Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wonderkun/cbddf55520776fea00375d4404eee476 to your computer and use it in GitHub Desktop.
Save wonderkun/cbddf55520776fea00375d4404eee476 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