Skip to content

Commit

Permalink
Merge pull request #1022 from subho007/patch-1
Browse files Browse the repository at this point in the history
[bugfix] Remove spaces from nsmap
  • Loading branch information
erev0s committed Mar 27, 2024
2 parents 868af2b + d2aa438 commit 30fdb63
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 30fdb63

Please sign in to comment.