aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filmstripper.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/filmstripper.py b/filmstripper.py
index 1b2d2c8..3609295 100644
--- a/filmstripper.py
+++ b/filmstripper.py
@@ -145,6 +145,8 @@ for eachFile in fileList:
extendedStrip = filmstrip.crop(box=(0, 0, filmstrip.width+widthAdd, filmstrip.height+heightAdd))
extendedStrip.paste(eachImage, (extendedStrip.width-width, extendedStrip.height-height))
filmstrip = extendedStrip
+ print(eachFile+" added to filmstrip.")
-
+print("Exporting filmstrip to "+outputFile)
filmstrip.save(outputFile)
+print("Filmstrip exported.")