X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/2d538a50605add2666172861744229599487f1b2..14f2c24a604e36cad62ba9f6f8d71bf500f8e35a:/src/depot/management/commands/depot.py?ds=sidebyside

diff --git a/src/depot/management/commands/depot.py b/src/depot/management/commands/depot.py
index 6e64e246..7087816b 100644
--- a/src/depot/management/commands/depot.py
+++ b/src/depot/management/commands/depot.py
@@ -1,10 +1,10 @@
 from django.core.management.base import BaseCommand
-from depot.models import ShopBookPublish
+from depot.models import SiteBookPublish
 
 
 class Command(BaseCommand):
     def handle(self, **options):
-        for p in ShopBookPublish.objects.filter(status=0).order_by('created_at'):
-            print(p.id, p.shop, p.book.slug, p.created_at)
+        for p in SiteBookPublish.objects.filter(status=0).order_by('created_at'):
+            print(p.id, p.site_book, p.created_at)
             p.publish()