What steps will reproduce the problem?
1. try to call GetIdaDirectory
2. get a TypeError
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Program Files\IDA\python\idc.py", line 1598, in GetIdaDirectory
return idaapi.idadir()
File "C:\Program Files\IDA\python\idaapi.py", line 17874, in idadir
return _idaapi.idadir(*args)
It looks like replacing the line of code in GetIdaDirectory to send an empty
string to idaapi.idadir solves this issue:
def GetIdaDirectory ():
return idaapi.idadir("")
Original issue reported on code.google.com by theh...@gmail.com on 21 Jun 2011 at 8:52
Original issue reported on code.google.com by
theh...@gmail.com
on 21 Jun 2011 at 8:52