Remove comment to move

This commit is contained in:
Antonio J. Delgado 2021-09-06 23:59:25 +03:00
parent 41ced89d7c
commit ffd8cc2a82

View file

@ -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: