Closed GoogleCodeExporter closed 9 years ago
You could also work around this by editing init.py's ScriptBox.run method:
change:
if n > 0:
return self.list[n-1]
to:
if n > 0:
file = self.list[n-1]
runscript(file)
return None
Original comment by cbwhiz@gmail.com
on 20 Dec 2009 at 8:06
Fixed in http://code.google.com/p/idapython/source/detail?r=272
It should work even if you only update the init.py for now.
Original comment by gergely.erdelyi
on 4 Feb 2010 at 9:00
Original issue reported on code.google.com by
cbwhiz@gmail.com
on 20 Dec 2009 at 7:57