Skip to content

Commit 4b4e53f

Browse files
author
astrand
committed
Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.
git-svn-id: http://svn.python.org/projects/python/trunk@38559 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 8183610 commit 4b4e53f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/subprocess.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,7 @@ def list2cmdline(seq):
532532
result.extend(bs_buf)
533533

534534
if needquote:
535+
result.extend(bs_buf)
535536
result.append('"')
536537

537538
return ''.join(result)

0 commit comments

Comments
 (0)