From 7e78ade6f9c387aa48b595b43478741299dff3bb Mon Sep 17 00:00:00 2001 From: Peter Astrand Date: Thu, 3 Mar 2005 21:10:23 +0000 Subject: Corrected bug in list2cmdline wrt backslashes. Fixes #1083306. --- Lib/subprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 61effde..e72e260 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -532,6 +532,7 @@ def list2cmdline(seq): result.extend(bs_buf) if needquote: + result.extend(bs_buf) result.append('"') return ''.join(result) -- cgit v0.12