Skip to content

Instantly share code, notes, and snippets.

@idiom
Last active November 5, 2020 14:04
Show Gist options
  • Save idiom/7bf970f704c2f5e9b2cec825ded91df6 to your computer and use it in GitHub Desktop.
Save idiom/7bf970f704c2f5e9b2cec825ded91df6 to your computer and use it in GitHub Desktop.
Ida 7.4 Python 3 Error
`C:\Program Files\IDA Pro 7.4\python\3\idc.py:5121: SyntaxWarning: "is not" with a literal. Did you mean "!="?
if newtype is not '':`
--- FIX ---
To resolve the above error change line 5121 to
`if newtype is not None:`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment