- Some reshuffling should restore matters.

This commit is contained in:
ccremers
2006-08-08 17:04:26 +00:00
parent 6f59760a70
commit e14d165816
4 changed files with 4 additions and 3 deletions

View File

@@ -26,12 +26,12 @@ class Scyther(object):
if sys.platform.startswith('win'):
""" Windows """
# TODO hardcoded for now, bad
self.program = os.path.join("bin","Scyther.exe")
self.program = "Scyther.exe"
if not os.path.isfile(self.program):
print "I can't find the Scyther executable at %s" % (self.program)
else:
""" Non-windows """
self.program = os.path.join("bin","scyther")
self.program = "scyther"
# Init
self.spdl = None