We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f97c7a commit 09ee4a6Copy full SHA for 09ee4a6
utils/incrparse/test_util.py
@@ -23,7 +23,7 @@ def escapeCmdArg(arg):
23
24
def run_command(cmd):
25
if sys.version_info[0] < 3:
26
- cmd = list(map(lambda s: s.encode('utf-8'), cmd))
+ cmd = list(map(lambda s: s.encode('utf-8'), cmd))
27
print(' '.join([escapeCmdArg(arg) for arg in cmd]))
28
return subprocess.check_output(cmd, stderr=subprocess.STDOUT)
29
0 commit comments