From 3e1e22d0e524dbd3251952e2e64e195286902721 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20St=C4=99pniowski?= Date: Sun, 30 Nov 2008 23:11:29 +0100 Subject: [PATCH] Importing MP3 and Ogg Vorbis files with filenames based on book slug, not on source XML filename. --- apps/catalogue/management/commands/importbooks.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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() -- 2.20.1