aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-01-09 23:21:32 +0100
committerSimon Warta <[email protected]>2017-01-11 12:32:03 +0100
commit7531a9b6da9e9ae060886945b40765b8e2326bba (patch)
tree1bd5a7008f61aa3675daf00e18705f9ae692ea1a /configure.py
parentb9cd6a729037cb60d6e168660a9ff22039a0a28f (diff)
Resolve lint issues: anomalous-backslash-in-string
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py6
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):