X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4f5547ad4cd06de77bdf0607e38aab2d45080bfc..20be4d9d8dad31ecbda183f4b5c74c9d80799f72:/apps/catalogue/management/commands/importbooks.py diff --git a/apps/catalogue/management/commands/importbooks.py b/apps/catalogue/management/commands/importbooks.py index 3ff0e5c90..0aa808137 100644 --- a/apps/catalogue/management/commands/importbooks.py +++ b/apps/catalogue/management/commands/importbooks.py @@ -71,14 +71,14 @@ 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 os.path.isfile(os.path.join(dir_name, book.slug + '.mp3')): + book.mp3_file.save('%s.mp3' % book.slug, File(file(os.path.join(dir_name, book.slug + '.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'))) + print "Importing %s.mp3" % book.slug + if os.path.isfile(os.path.join(dir_name, book.slug + '.ogg')): + book.ogg_file.save('%s.ogg' % book.slug, File(file(os.path.join(dir_name, book.slug + '.ogg')))) if verbose: - print "Importing %s.ogg" % file_base + print "Importing %s.ogg" % book.slug book.save()