diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-16 00:12:14 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-16 00:12:14 (GMT) |
commit | af3ebe922a045e2974efcaddb14651c8fe8f613f (patch) | |
tree | 3e0b2ecd7f2bda7f83291ba4560016fab9492791 /test/SConsignFile/use-dbm.py | |
parent | 49fb9723d59ddbe19478dc537a1672e855a744aa (diff) | |
download | SCons-af3ebe922a045e2974efcaddb14651c8fe8f613f.zip SCons-af3ebe922a045e2974efcaddb14651c8fe8f613f.tar.gz SCons-af3ebe922a045e2974efcaddb14651c8fe8f613f.tar.bz2 |
py2/3 set python path to be raw string literal py3 was trying to interpret path as unicode
Diffstat (limited to 'test/SConsignFile/use-dbm.py')
-rw-r--r-- | test/SConsignFile/use-dbm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SConsignFile/use-dbm.py b/test/SConsignFile/use-dbm.py index 129d5b6..b5021c4 100644 --- a/test/SConsignFile/use-dbm.py +++ b/test/SConsignFile/use-dbm.py @@ -61,7 +61,7 @@ test.write('SConstruct', """ import sys import %(use_db)s SConsignFile('.sconsign', %(use_db)s) -B = Builder(action = '%(_python_)s build.py $TARGETS $SOURCES') +B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES') env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'f1.out', source = 'f1.in') env.B(target = 'f2.out', source = 'f2.in') |