fix:rollback processing with #

This commit is contained in:
wangmm0220 2023-10-24 09:54:52 +08:00
parent 28b69d279f
commit 37131564a3
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class TDSimClient:
self.cfgDict.update({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:
tdLog.exit(cmd)