[Scummvm-git-logs] scummvm-icons master -> a924e765b59b8cabe2fedfd86e5b5cd864d031b1
GandalfTheWhite80
noreply at scummvm.org
Sat Mar 5 20:09:08 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-icons' repo located at https://github.com/scummvm/scummvm-icons .
Summary:
a924e765b5 ICONS: corrected typo in run_git when changing the locale to C (#157)
Commit: a924e765b59b8cabe2fedfd86e5b5cd864d031b1
https://github.com/scummvm/scummvm-icons/commit/a924e765b59b8cabe2fedfd86e5b5cd864d031b1
Author: neuromancer (neuromancer at users.noreply.github.com)
Date: 2022-03-05T21:09:05+01:00
Commit Message:
ICONS: corrected typo in run_git when changing the locale to C (#157)
Changed paths:
gen-set.py
diff --git a/gen-set.py b/gen-set.py
index 9c553e0..eb77ac3 100644
--- a/gen-set.py
+++ b/gen-set.py
@@ -348,7 +348,7 @@ def write_iconsdat(changed_files: list) -> str:
def run_git(*args):
my_env = os.environ.copy()
- env["LANG"] = "C"
+ my_env["LANG"] = "C"
""" Executes a git command and returns the stdout (as line[])"""
with subprocess.Popen(args=['git'] + list(args), stdout=subprocess.PIPE, env=my_env) as child_proc:
return child_proc.stdout.readlines()
More information about the Scummvm-git-logs
mailing list