X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/90f3cd6c555c7e976016b1d0cdda1e68b098764a..4f5547ad4cd06de77bdf0607e38aab2d45080bfc:/apps/catalogue/management/commands/importbooks.py diff --git a/apps/catalogue/management/commands/importbooks.py b/apps/catalogue/management/commands/importbooks.py index 484ed4ace..3ff0e5c90 100644 --- a/apps/catalogue/management/commands/importbooks.py +++ b/apps/catalogue/management/commands/importbooks.py @@ -46,7 +46,6 @@ class Command(BaseCommand): # Skip files that are not XML files if not ext == '.xml': - print self.style.NOTICE("%s: Not an XML file. Skipping." % file_path) continue if verbose > 0: @@ -72,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: