summaryrefslogtreecommitdiff
path: root/pygnulib/GLTestDir.py
diff options
context:
space:
mode:
authorDmitry Selyutin <ghostmansd@gmail.com>2017-09-05 10:04:18 +0300
committerDmitry Selyutin <ghostmansd@gmail.com>2017-09-08 17:27:55 +0300
commit3df666053421259b4f4ee32d4d67a8514ef126e4 (patch)
tree0cedbb996679dfc3b0859c08dc9d63c513c4707d /pygnulib/GLTestDir.py
parent1fdadd2ce8c539c14f138d563214260f1a32baa3 (diff)
downloadgnulib-3df666053421259b4f4ee32d4d67a8514ef126e4.tar.gz
gnulib-tool.py: fix errors on building wget2; use UTF-8 in subprocess
Diffstat (limited to 'pygnulib/GLTestDir.py')
-rw-r--r--pygnulib/GLTestDir.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 8652d1ffc3..58663eab00 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -903,7 +903,7 @@ class GLMegaTestDir(object):
vc_witness = joinpath(DIRS['root'], '.git', 'refs', 'heads', 'master')
mdate_sh = joinpath(DIRS['root'], 'build-aux', 'mdate-sh')
args = ['sh', mdate_sh, vc_witness]
- cvsdate = sp.check_output(args).decode(ENCS['shell']).strip()
+ cvsdate = sp.check_output(args).decode("UTF-8").strip()
for key in repdict:
if len(key) > 3:
cvsdate = cvsdate.replace(key, repdict[key])