summaryrefslogtreecommitdiff
path: root/test/ESCAPE.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ESCAPE.py')
-rw-r--r--test/ESCAPE.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ESCAPE.py b/test/ESCAPE.py
index 0651b92d..819d60b0 100644
--- a/test/ESCAPE.py
+++ b/test/ESCAPE.py
@@ -51,7 +51,7 @@ def my_escape(s):
s = s.replace('file.in', 'file.xxx')
return orig_escape(s)
env = Environment(ESCAPE = my_escape)
-env.Command('file.out', 'file.in', '%(_python_)s cat.py $TARGET $SOURCES')
+env.Command('file.out', 'file.in', r'%(_python_)s cat.py $TARGET $SOURCES')
""" % locals())
test.write('file.in', "file.in\n")