diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 17:31:04 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-17 18:14:27 +0100 |
commit | a26e6c73275d07c4f7bf80745ce26eb7aa8d941a (patch) | |
tree | e8d433fff41983c96ed15b631e84f71cc0e8cae2 /waflib/extras/run_do_script.py | |
parent | b69a38d171758c6e979d74541fc21d12b7e6abda (diff) | |
parent | 8798f33f1a7f0ed33a847b23ea5f8cbc63bb294b (diff) | |
download | patchage-a26e6c73275d07c4f7bf80745ce26eb7aa8d941a.tar.gz patchage-a26e6c73275d07c4f7bf80745ce26eb7aa8d941a.tar.bz2 patchage-a26e6c73275d07c4f7bf80745ce26eb7aa8d941a.zip |
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/extras/run_do_script.py')
-rw-r--r-- | waflib/extras/run_do_script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/waflib/extras/run_do_script.py b/waflib/extras/run_do_script.py index f3c5812..07e3aa2 100644 --- a/waflib/extras/run_do_script.py +++ b/waflib/extras/run_do_script.py @@ -101,7 +101,7 @@ class run_do_script(run_do_script_base): with open(**kwargs) as log: log_tail = log.readlines()[-10:] for line in log_tail: - error_found = re.match("r\(([0-9]+)\)", line) + error_found = re.match(r"r\(([0-9]+)\)", line) if error_found: return error_found.group(1), ''.join(log_tail) else: |