From 7107a0a681bd93efa1a18515200bcdbd72aa8691 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Mon, 20 Sep 2021 09:36:03 +0800 Subject: [PATCH] Flattener: allow percent sign in names --- FlattenSegmentedMacAppForDisassembler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlattenSegmentedMacAppForDisassembler.py b/FlattenSegmentedMacAppForDisassembler.py index 8bdd808..5d1a5ad 100755 --- a/FlattenSegmentedMacAppForDisassembler.py +++ b/FlattenSegmentedMacAppForDisassembler.py @@ -7,7 +7,7 @@ import struct import string -OKCHARS = string.ascii_letters + string.digits + "_" +OKCHARS = string.ascii_letters + string.digits + "_%" def addr(seg):