From d836ed3b745be3637806e2e4b13c18859356f8d9 Mon Sep 17 00:00:00 2001 From: penn5 Date: Sat, 8 Jun 2019 17:44:18 +0100 Subject: [PATCH] Oops --- idtconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idtconfig.py b/idtconfig.py index 20b2c5f..f1e5d75 100755 --- a/idtconfig.py +++ b/idtconfig.py @@ -29,7 +29,7 @@ def get_images(cfg: bytes): def get_simple(cfg): ret = {} for line in cfg.split("\n"): - match = re.fullmatch(r"(\w+)(?:\W+)(.+)") + match = re.fullmatch(r"(\w+)(?:\W+)(.+)", line) if not match: continue addr = int(match[1], 0)