searching works, without fragments
[wolnelektury.git] / apps / catalogue / management / commands / pack.py
index a300aff..c75f092 100755 (executable)
@@ -24,7 +24,6 @@ class Command(BaseCommand):
             help='Exclude specific books by slug')
     )
     help = 'Prepare data for Lesmianator.'
-    ftypes = ['xml', 'txt', 'html', 'epub', 'pdf']
     args = '[%s] output_path.zip' % '|'.join(ftypes)
 
     def handle(self, ftype, path, **options):
@@ -34,7 +33,7 @@ class Command(BaseCommand):
         include = options.get('include')
         exclude = options.get('exclude')
 
-        if ftype in self.ftypes:
+        if ftype in Book.file_types:
             field = "%s_file" % ftype
         else:
             print self.style.ERROR('Unknown file type.')