diff options
| -rwxr-xr-x | script/size.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/size.py b/script/size.py index ad41979..e1f6605 100755 --- a/script/size.py +++ b/script/size.py @@ -24,7 +24,7 @@ def main(size_executable, rom_sections, ram_sections): section_size = dict() for line in status.stdout.split("\n"): - match = re.match("[.](\S+)\s+(\d+)", line) + match = re.match(r"[.](\S+)\s+(\d+)", line) if match: section = match.group(1) size = int(match.group(2)) |
