diff --git a/image_classifier/image_classifier.py b/image_classifier/image_classifier.py index 85327e0..4aa843c 100755 --- a/image_classifier/image_classifier.py +++ b/image_classifier/image_classifier.py @@ -100,7 +100,7 @@ class image_classifier: new_path = os.path.join(dirname, match.group('year'), match.group('month'), match.group('day'), filename) if new_path: self._log.info(f"Moving file '{file}' to '{new_path}'...") - #shutil.move(file, new_path) + shutil.move(file, new_path) else: self._log.debug('No new path, so no moving.') else: