diff --git a/phototag/__init__.py b/phototag/__init__.py index 87d6e0e..6291d43 100644 --- a/phototag/__init__.py +++ b/phototag/__init__.py @@ -19,7 +19,7 @@ TEMP_PATH = os.path.join(ROOT, "temp") OUTPUT_PATH = os.path.join(ROOT, "output") log.info("Path Constants Built.") -# Enviroment Variables +# Environment Variables os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = os.path.join( SCRIPT_ROOT, "config", config.config["google"]["credentials"] ) diff --git a/phototag/app.py b/phototag/app.py index 40b3176..ddbacd0 100644 --- a/phototag/app.py +++ b/phototag/app.py @@ -34,7 +34,7 @@ def run(): ] log.info(f"Found {len(select)} valid files") if len(select) <= 0: - log.fatal("No vald files found, exiting early") + log.fatal("No valid files found, exiting early") return # Create the 'temp' directory diff --git a/phototag/cli.py b/phototag/cli.py index d5b3f0c..e09da7d 100644 --- a/phototag/cli.py +++ b/phototag/cli.py @@ -35,9 +35,9 @@ def run(): def auth(path, move): if not os.path.isabs(path): path = os.path.abspath(path) - # Verify that the file eixsts + # Verify that the file exists if os.path.isfile(path): - log.info("Specifed path is file and exists") + log.info("Specified path is file and exists") else: if os.path.isdir(path): log.warning("Specified path is directory, not file!")