Last active
November 5, 2020 14:04
-
-
Save idiom/7bf970f704c2f5e9b2cec825ded91df6 to your computer and use it in GitHub Desktop.
Ida 7.4 Python 3 Error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`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