Flattener: allow percent sign in names

This commit is contained in:
Elliot Nunn 2021-09-20 09:36:03 +08:00
parent ea31611606
commit 7107a0a681
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import struct
import string
OKCHARS = string.ascii_letters + string.digits + "_"
OKCHARS = string.ascii_letters + string.digits + "_%"
def addr(seg):