DGA-MI-SSI / YaCo

YaCo is an Hex-Rays IDA plugin. When enabled, multiple users can work simultaneously on the same binary. Any modification done by any user is synchronized through git version control.
GNU General Public License v3.0
313 stars 36 forks source link

No module named yatools #27

Closed fridtjof closed 6 years ago

fridtjof commented 6 years ago

This is what I get when running YaCo in IDA (after applying #26 to fix path names)

YaCo: error during run
Traceback (most recent call last):
  File "/Applications/IDA Pro 7.0/ida.app/Contents/MacOS/plugins/yaco_plugin.py", line 88, in run
    import YaCo
  File "/Applications/IDA Pro 7.0/ida.app/Contents/MacOS/plugins/YaTools/YaCo/YaCo.py", line 35, in <module>
    import hooks
  File "/Applications/IDA Pro 7.0/ida.app/Contents/MacOS/plugins/YaTools/YaCo/hooks.py", line 23, in <module>
    import yatools
ImportError: No module named yatools

Obviously, there is no file called yatools in neither the YaCo nor the bin dir

bamiaux commented 6 years ago

A bug from the repo patch merge, please try https://github.com/DGA-MI-SSI/YaCo/tree/repo_fixes

fridtjof commented 6 years ago

That worked, thanks!