summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMartin Green <martin.speleo@gmail.com>2023-04-30 19:01:07 +0100
committerMartin Green <martin.speleo@gmail.com>2023-04-30 19:01:07 +0100
commit374caa0d9ac2bcf2c650054756a2fa0f6d1d0775 (patch)
treed499f25472ad6a558cd64480b4ae8ef7e5ba71ee /core
parent82aaa2b523be876aeed2e0caad7165701563a979 (diff)
downloadtroggle-374caa0d9ac2bcf2c650054756a2fa0f6d1d0775.tar.gz
troggle-374caa0d9ac2bcf2c650054756a2fa0f6d1d0775.tar.bz2
troggle-374caa0d9ac2bcf2c650054756a2fa0f6d1d0775.zip
Fixeed spelling error in variable name
Diffstat (limited to 'core')
-rw-r--r--core/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/utils.py b/core/utils.py
index 3461543..fa62d48 100644
--- a/core/utils.py
+++ b/core/utils.py
@@ -143,7 +143,7 @@ def write_and_commit(files, message):
+ msgdata
)
else:
- print(f"No change {filepah}")
+ print(f"No change {filepath}")
subprocess.run([git, "commit", "-m", message], cwd=cwd, capture_output=True, text=True)
cp_status = subprocess.run([git, "status"], cwd=cwd, capture_output=True, text=True)
# This produces return code = 1 if it commits OK, but when the repo still needs to be pushed to origin/expoweb