BUGFIX: Paths with control characters (e.g. $) were causing trouble.

This commit is contained in:
Cas Cremers 2009-04-30 13:40:06 +02:00
parent d633a62f0d
commit cd33fb3e14

View File

@ -235,7 +235,7 @@ class Scyther(object):
# Generate command line for the Scyther process # Generate command line for the Scyther process
self.cmd = "" self.cmd = ""
self.cmd += "\"%s\"" % self.program self.cmd += "\'%s\'" % self.program
self.cmd += " --append-errors=%s" % fne self.cmd += " --append-errors=%s" % fne
self.cmd += " --append-output=%s" % fno self.cmd += " --append-output=%s" % fno
self.cmd += " %s" % args self.cmd += " %s" % args