We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
D:\IDA_Pro_v7.5\plugins\SyncPlugin.py: unsupported operand type(s) for +: 'set' and 'tuple' Traceback (most recent call last): File "D:\IDA_Pro_v7.5\python\3\ida_idaapi.py", line 616, in IDAPython_ExecScript exec(code, g) File "D:/IDA_Pro_v7.5/plugins/SyncPlugin.py", line 63, in <module> PYTHON_PATH = rsconfig.get_python_interpreter() File "D:/IDA_Pro_v7.5/plugins\retsync\rsconfig.py", line 224, in get_python_interpreter PYTHON_PATHS = PYTHON_PATHS + localpaths TypeError: unsupported operand type(s) for +: 'set' and 'tuple'
ret-sync/ext_ida/retsync/rsconfig.py
Line 224 in 900eba4
This is because PYTHON_PATHS is a set and localpaths is a tuple, and these two variable types do not support addition.
PYTHON_PATHS
localpaths
I commented out this line of code and after adding the following code the plugin was loaded successfully.
for localpath in localpaths: PYTHON_PATHS.add(localpath)
The text was updated successfully, but these errors were encountered:
[ext_ida] fix Python paths research set building code
ffb9fae
Fixing wrong code, "+" operator not supported between set and tuple Reported by @luoshuijs in #87 Thank you.
Hello @luoshuijs ;
it should be fixed in the commit above, see ffb9fae
Thanks a lot for reporting it.
Just let me know if it is ok to close the issue.
Sorry, something went wrong.
Thanks for your reply and fix, I'm closing this issue.
bootleg
No branches or pull requests
ret-sync/ext_ida/retsync/rsconfig.py
Line 224 in 900eba4
This is because
PYTHON_PATHS
is a set andlocalpaths
is a tuple, and these two variable types do not support addition.I commented out this line of code and after adding the following code the plugin was loaded successfully.
The text was updated successfully, but these errors were encountered: