fix:rollback processing with #
This commit is contained in:
parent
28b69d279f
commit
37131564a3
|
@ -64,7 +64,7 @@ class TDSimClient:
|
||||||
self.cfgDict.update({option: value})
|
self.cfgDict.update({option: value})
|
||||||
|
|
||||||
def cfg(self, option, value):
|
def cfg(self, option, value):
|
||||||
cmd = "echo %s '%s' >> %s" % (option, value, self.cfgPath)
|
cmd = "echo %s %s >> %s" % (option, value, self.cfgPath)
|
||||||
if os.system(cmd) != 0:
|
if os.system(cmd) != 0:
|
||||||
tdLog.exit(cmd)
|
tdLog.exit(cmd)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue