aboutsummaryrefslogtreecommitdiff
path: root/check-git-repos.py
diff options
context:
space:
mode:
Diffstat (limited to 'check-git-repos.py')
-rwxr-xr-xcheck-git-repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-git-repos.py b/check-git-repos.py
index 22babc5..d4e090c 100755
--- a/check-git-repos.py
+++ b/check-git-repos.py
@@ -21,7 +21,7 @@ def run_command(cmd, dir):
log.debug("executing %s in %s", cmd, dir)
try:
out = check_output(cmd, stderr=STDOUT,
- cwd=dir)
+ cwd=dir, encoding="utf-8")
except CalledProcessError as e:
return e.returncode, e.output
return 0, out