diff options
author | Simon Warta <[email protected]> | 2017-01-09 23:21:32 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-01-11 12:32:03 +0100 |
commit | 7531a9b6da9e9ae060886945b40765b8e2326bba (patch) | |
tree | 1bd5a7008f61aa3675daf00e18705f9ae692ea1a /configure.py | |
parent | b9cd6a729037cb60d6e168660a9ff22039a0a28f (diff) |
Resolve lint issues: anomalous-backslash-in-string
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.py b/configure.py index f0a2ab619..28e29cba0 100755 --- a/configure.py +++ b/configure.py @@ -1888,9 +1888,9 @@ def generate_amalgamation(build_config, options): return contents - botan_include_matcher = re.compile('#include <botan/(.*)>$') - std_include_matcher = re.compile('^#include <([^/\.]+|stddef.h)>$') - any_include_matcher = re.compile('#include <(.*)>$') + botan_include_matcher = re.compile(r'#include <botan/(.*)>$') + std_include_matcher = re.compile(r'^#include <([^/\.]+|stddef.h)>$') + any_include_matcher = re.compile(r'#include <(.*)>$') class AmalgamationGenerator: def __init__(self, input_list): |