From: Marek Stępniowski Date: Sun, 30 Nov 2008 22:11:29 +0000 (+0100) Subject: Importing MP3 and Ogg Vorbis files with filenames based on book slug, not on source... X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/3e1e22d0e524dbd3251952e2e64e195286902721 Importing MP3 and Ogg Vorbis files with filenames based on book slug, not on source XML filename. --- 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()