From ffd8cc2a8290ac6122a74e9c56466f4621b648b1 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Mon, 6 Sep 2021 23:59:25 +0300 Subject: [PATCH] Remove comment to move --- image_classifier/image_classifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: