diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-05-29 16:47:41 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-05-30 03:48:17 (GMT) |
commit | 8d1cf8c365f23c293d8d53add4d54358d83933bb (patch) | |
tree | 2a8f612abaddfb191059c2aac37116ee84853379 /src | |
parent | c4ae2b2caaae3154bc150a381a21267116402553 (diff) | |
download | SCons-8d1cf8c365f23c293d8d53add4d54358d83933bb.zip SCons-8d1cf8c365f23c293d8d53add4d54358d83933bb.tar.gz SCons-8d1cf8c365f23c293d8d53add4d54358d83933bb.tar.bz2 |
PY38: Fix invalid escape chars in compare string
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/UtilTests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/UtilTests.py b/src/engine/SCons/UtilTests.py index 99873ce..a996003 100644 --- a/src/engine/SCons/UtilTests.py +++ b/src/engine/SCons/UtilTests.py @@ -768,12 +768,12 @@ class UtilTestCase(unittest.TestCase): def test_LogicalLines(self): """Test the LogicalLines class""" content = u""" -foo \ -bar \ +foo \\ +bar \\ baz foo -bling \ -bling \ bling +bling \\ +bling \\ bling bling """ fobj = io.StringIO(content) |