more uncaught mispellings across files, adding to user dictionary etc.

This commit is contained in:
Xevion
2020-02-07 02:04:53 -06:00
parent 63539390a0
commit c2335a5754
3 changed files with 4 additions and 4 deletions

View File

@@ -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"]
)

View File

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

View File

@@ -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!")