From 3b6fa5702f2b685ad9bba240009c0012bb1c54e5 Mon Sep 17 00:00:00 2001 From: kthoden Date: Thu, 9 Apr 2020 10:32:09 +0200 Subject: [PATCH] Specify where cover was copied from --- src/imxml2django.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imxml2django.py b/src/imxml2django.py index 6be5b2a..53865b2 100755 --- a/src/imxml2django.py +++ b/src/imxml2django.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8; mode: python -*- -# Time-stamp: <2020-04-06 15:39:47 (kthoden)> +# Time-stamp: <2020-04-08 17:46:10 (kthoden)> """ Create an XML file that can be inserted into the Django database @@ -139,7 +139,7 @@ sys.exit( 1 ) if os.path.exists(INPUT_DIR / "Cover.jpg"): shutil.copy(INPUT_DIR / "Cover.jpg", OUTPUT_DIR / "Cover.jpg") - logging.info("Copied from current directory.") + logging.info("Copied cover image from input directory.") else: logging.error("No coverfile found. You can create a temporary one with the mkimage.py script") sys.exit( 1 )