Skip to content
Snippets Groups Projects
Commit 42f3a277 authored by Augie Fackler's avatar Augie Fackler
Browse files

tests: fix printenv script on Python 3

Differential Revision: https://phab.mercurial-scm.org/D3725
parent bec815f9
No related merge requests found
......@@ -26,6 +26,7 @@
exitcode = 0
out = sys.stdout
out = getattr(out, 'buffer', out)
name = sys.argv[1]
if len(sys.argv) > 2:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment