Commit 23d0bd91 authored by Matthias Putz's avatar Matthias Putz

fixed encoding issue in windows while using verify

parent 3e562eb1
...@@ -477,7 +477,7 @@ def _Verify(cwd, branch, quiet): ...@@ -477,7 +477,7 @@ def _Verify(cwd, branch, quiet):
print(file=sys.stderr) print(file=sys.stderr)
env = os.environ.copy() env = os.environ.copy()
env['GNUPGHOME'] = gpg_dir.encode() env['GNUPGHOME'] = gpg_dir
cmd = [GIT, 'tag', '-v', cur] cmd = [GIT, 'tag', '-v', cur]
proc = subprocess.Popen(cmd, proc = subprocess.Popen(cmd,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment