Remove old logging
This commit is contained in:
parent
2d8c8fa40f
commit
14617111a8
@ -205,9 +205,7 @@ class ConfigManager(QObject):
|
|||||||
if optname.startswith(c):
|
if optname.startswith(c):
|
||||||
optname = optname.replace(c, self.ESCAPE_CHAR + c, 1)
|
optname = optname.replace(c, self.ESCAPE_CHAR + c, 1)
|
||||||
for c in self.VALUE_ESCAPE:
|
for c in self.VALUE_ESCAPE:
|
||||||
logging.warn("{} Before escaping {}: {}".format(optname, c, value))
|
|
||||||
value = value.replace(c, self.ESCAPE_CHAR + c)
|
value = value.replace(c, self.ESCAPE_CHAR + c)
|
||||||
logging.warn("After escaping {}: {}".format(c, value))
|
|
||||||
keyval = '{} = {}'.format(optname, value)
|
keyval = '{} = {}'.format(optname, value)
|
||||||
lines.append(keyval)
|
lines.append(keyval)
|
||||||
return lines
|
return lines
|
||||||
|
Loading…
Reference in New Issue
Block a user