summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2024-02-25 17:40:19 +0100
committerJohn Wiegley <johnw@newartisans.com>2024-07-08 10:12:07 -0700
commit815305b94864556c994934c7a7c830da7de1d94e (patch)
tree6d85f089b05520416eee1f51f80636b357cda73d /acprep
parent0b561c7304ec82807212bd070fc6a1684c67607b (diff)
downloadledger-815305b94864556c994934c7a7c830da7de1d94e.tar.gz
ledger-815305b94864556c994934c7a7c830da7de1d94e.tar.bz2
ledger-815305b94864556c994934c7a7c830da7de1d94e.zip
Use Python raw strings for regex methods argument
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep10
1 files changed, 5 insertions, 5 deletions
diff --git a/acprep b/acprep
index 13032e39..70b28e03 100755
--- a/acprep
+++ b/acprep
@@ -413,16 +413,16 @@ class PrepareBuild(CommandLineApp):
version_m4 = open('CMakeLists.txt', 'r')
for line in version_m4.readlines():
- match = re.match('^set\(Ledger_VERSION_MAJOR ([0-9]+)\)', line)
+ match = re.match(r'^set\(Ledger_VERSION_MAJOR ([0-9]+)\)', line)
if match:
major = match.group(1)
- match = re.match('^set\(Ledger_VERSION_MINOR ([0-9]+)\)', line)
+ match = re.match(r'^set\(Ledger_VERSION_MINOR ([0-9]+)\)', line)
if match:
minor = match.group(1)
- match = re.match('^set\(Ledger_VERSION_PATCH ([0-9]+)\)', line)
+ match = re.match(r'^set\(Ledger_VERSION_PATCH ([0-9]+)\)', line)
if match:
patch = match.group(1)
- match = re.match('^set\(Ledger_VERSION_DATE ([0-9]+)\)', line)
+ match = re.match(r'^set\(Ledger_VERSION_DATE ([0-9]+)\)', line)
if match:
date = match.group(1)
break
@@ -840,7 +840,7 @@ class PrepareBuild(CommandLineApp):
PrepareBuild.__dict__['setup_flavor_' + self.current_flavor](self)
def escape_string(self, data):
- return re.sub('(["\\\\])', '\\\\\\1', data)
+ return re.sub(r'(['\\\\])', '\\\\\\1', data)
def finalize_config(self):
self.setup_flavor()