diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-23 18:46:44 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-23 18:46:44 +0000 |
commit | 8fd09bef92b899ad0ba839eb9eedf1073fce5cc7 (patch) | |
tree | c947afaaf9a5cbd1af892b04c87e397e9c52e8dd /core/TESTS/test_parsers.py | |
parent | 521fd20e37de00179cfe92a5458a9baf80129c6a (diff) | |
download | troggle-8fd09bef92b899ad0ba839eb9eedf1073fce5cc7.tar.gz troggle-8fd09bef92b899ad0ba839eb9eedf1073fce5cc7.tar.bz2 troggle-8fd09bef92b899ad0ba839eb9eedf1073fce5cc7.zip |
python 3.12 discovered syntax issues
Diffstat (limited to 'core/TESTS/test_parsers.py')
-rw-r--r-- | core/TESTS/test_parsers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/TESTS/test_parsers.py b/core/TESTS/test_parsers.py index 8274f89..1c7b929 100644 --- a/core/TESTS/test_parsers.py +++ b/core/TESTS/test_parsers.py @@ -171,7 +171,7 @@ class ImportTest(TestCase): # f.write(content) expected = [ "Edit Logbook Entry on 1986-07-31", - "Other names \(comma separated\)", # regex so slashes need to be espcaped + r"Other names \(comma separated\)", # regex match so slashes need to be espcaped "Place: cave name, or 'plateau', 'topcamp' etc.", ] for ph in expected: |