diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-10 17:46:13 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-10 17:46:13 +0000 |
commit | aa164e9d81c397e89c4d9e64e014e0b08e4e5a1d (patch) | |
tree | 5e8e59b2530a2b3089c3c86e840a161fb80396fe /core/utils.py | |
parent | cb9bfbf5d2b84940b235e3b446b67260cd9c6a3e (diff) | |
download | troggle-aa164e9d81c397e89c4d9e64e014e0b08e4e5a1d.tar.gz troggle-aa164e9d81c397e89c4d9e64e014e0b08e4e5a1d.tar.bz2 troggle-aa164e9d81c397e89c4d9e64e014e0b08e4e5a1d.zip |
bug typo fixed
Diffstat (limited to 'core/utils.py')
-rw-r--r-- | core/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/utils.py b/core/utils.py index 624cfff..09e5309 100644 --- a/core/utils.py +++ b/core/utils.py @@ -305,10 +305,10 @@ def write_and_commit(files, message): msgdata = ( "Commands: " + str(commands) + "Ask a nerd to fix this.\n\n" - + "Stderr: " + cp_status.stderr + + "Stderr: " + cm_status.stderr + "\n\n" - + "Stdout: " + cp_status.stdout - + "\n\nreturn code: " + str(cp_status.returncode) + + "Stdout: " + cm_status.stdout + + "\n\nreturn code: " + str(cm_status.returncode) + "\n\ngit add return code in previous operation was: " + git_add_returncode ) raise WriteAndCommitError( |