Bugfix for cover thumbnail generation.
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Thu, 25 Sep 2014 13:49:52 +0000 (15:49 +0200)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Thu, 25 Sep 2014 13:49:52 +0000 (15:49 +0200)
apps/catalogue/models/book.py
fabfile.py

index 3c32481..3da9f06 100644 (file)
@@ -30,7 +30,7 @@ def _cover_upload_to(i, n):
     return 'book/cover/%s.jpg' % i.slug
 
 def _cover_thumb_upload_to(i, n):
-    return 'book/cover_thumb/%s.jpg' % i.slug,
+    return 'book/cover_thumb/%s.jpg' % i.slug
 
 def _ebook_upload_to(upload_path):
     def _upload_to(i, n):
index 5030e05..77652e1 100644 (file)
@@ -14,7 +14,7 @@ def production():
     env.user = 'lektury'
     env.app_path = '/srv/wolnelektury.pl'
     env.services = [
-        DebianGunicorn('wolnelektury'),
+        Supervisord('wolnelektury.gunicorn'),
         Supervisord('celery.wolnelektury:'),
     ]