From: Marek Stępniowski Date: Sun, 30 Nov 2008 14:59:06 +0000 (+0100) Subject: importbooks command now imports mp3 and ogg files. X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/4f5547ad4cd06de77bdf0607e38aab2d45080bfc importbooks command now imports mp3 and ogg files. --- diff --git a/apps/catalogue/management/commands/importbooks.py b/apps/catalogue/management/commands/importbooks.py index 239da77d4..3ff0e5c90 100644 --- a/apps/catalogue/management/commands/importbooks.py +++ b/apps/catalogue/management/commands/importbooks.py @@ -71,7 +71,15 @@ class Command(BaseCommand): book.txt_file.save('%s.txt' % book.slug, File(file(file_base + '.txt'))) if verbose: print "Importing %s.txt" % file_base - + if os.path.isfile(file_base + '.mp3'): + book.mp3_file.save('%s.mp3' % book.slug, File(file(file_base + '.mp3'))) + if verbose: + print "Importing %s.txt" % file_base + if os.path.isfile(file_base + '.ogg'): + book.ogg_file.save('%s.ogg' % book.slug, File(file(file_base + '.ogg'))) + if verbose: + print "Importing %s.ogg" % file_base + book.save() except Book.AlreadyExists, msg: