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 )