diff --git a/image_classifier/image_classifier.py b/image_classifier/image_classifier.py index ad0284a..0c84908 100755 --- a/image_classifier/image_classifier.py +++ b/image_classifier/image_classifier.py @@ -68,7 +68,7 @@ class image_classifier: ''' Process a file, find faces, add EXIF information and move it to the folder of the day''' self._log.debug(f"Looking for faces in file '{file}'...") - new_path = False + folder = False dirname = os.path.dirname(os.path.realpath(file)) filename = os.path.basename(file) if not os.access(file, os.R_OK): diff --git a/setup.cfg b/setup.cfg index 19e8fd3..778a021 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = image_classifier -version = 0.0.5 +version = 0.0.6 [options] packages = image_classifier diff --git a/setup.py b/setup.py index 5019b90..e7d0d6c 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if os.access(requirements_file, os.R_OK): setuptools.setup( scripts=['image_classifier/image_classifier.py'], author="Antonio J. Delgado", - version='0.0.5', + version='0.0.6', name='image_classifier', author_email="antoniodelgado@susurrando.com", url="",