Commit 7e78ade6 authored by Peter Astrand's avatar Peter Astrand

Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.

parent f7f1bb7f
......@@ -532,6 +532,7 @@ def list2cmdline(seq):
result.extend(bs_buf)
if needquote:
result.extend(bs_buf)
result.append('"')
return ''.join(result)
......
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