Rev3744, Fix typo

This commit is contained in:
shortcutme 2018-12-30 12:28:19 +01:00
parent fc417e7273
commit d1227b6447
No known key found for this signature in database
GPG Key ID: 5B63BAE6CB9613AE
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ class Config(object):
def __init__(self, argv):
self.version = "0.6.4"
self.rev = 3743
self.rev = 3744
self.argv = argv
self.action = None
self.pending_changes = {}
@ -419,7 +419,7 @@ class Config(object):
if type(val) is list:
val = val[:]
if key in ("data_dir", "log_dir"):
val = bal.replace("\\", "/")
val = val.replace("\\", "/")
setattr(self, key, val)
def loadPlugins(self):