Correctly escaping program file name.
This commit is contained in:
parent
dc4dc34624
commit
e5fc05a379
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user