Index: test/same-rule-output-file-name/src/touch.py |
=================================================================== |
--- test/same-rule-output-file-name/src/touch.py (revision 1452) |
+++ test/same-rule-output-file-name/src/touch.py (working copy) |
@@ -8,7 +8,7 @@ |
import sys |
# Trim quotes |
-sys.argv[1], = shlex.split(sys.argv[1]) |
+sys.argv[1], = shlex.split(sys.argv[1].replace('\\', '\\\\')) |
scottmg
2012/08/09 18:18:49
Is the shlex even necessary? "Trim quotes" isn't v
|
f = open(sys.argv[1], 'w+') |
f.write('Hello from touch.py\n') |