Skip to content

Commit 09ee4a6

Browse files
authored
Update test_util.py
Appease the python linter.
1 parent 6f97c7a commit 09ee4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/incrparse/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def escapeCmdArg(arg):
2323

2424
def run_command(cmd):
2525
if sys.version_info[0] < 3:
26-
cmd = list(map(lambda s: s.encode('utf-8'), cmd))
26+
cmd = list(map(lambda s: s.encode('utf-8'), cmd))
2727
print(' '.join([escapeCmdArg(arg) for arg in cmd]))
2828
return subprocess.check_output(cmd, stderr=subprocess.STDOUT)
2929

0 commit comments

Comments
 (0)