Skip to content

Commit

Permalink
[bugfix] Remove spaces from nsmap
Browse files Browse the repository at this point in the history
See more details in: appknox/pyaxmlparser#64
  • Loading branch information
subho007 committed Mar 26, 2024
1 parent 868af2b commit d2aa438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion androguard/core/axml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def nsmap(self):
# Solve 2) & 4) by not including
if s_uri != "" and s_prefix != "":
# solve 1) by using the last one in the list
NSMAP[s_prefix] = s_uri
NSMAP[s_prefix] = s_uri.strip()

return NSMAP

Expand Down

0 comments on commit d2aa438

Please sign in to comment.