Fix log directory path bug
This commit is contained in:
parent
2ceada84a6
commit
e0c56c6342
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ class Config(object):
|
|||
self.setAttributes()
|
||||
|
||||
self.data_dir = self.data_dir.replace("\\", "/")
|
||||
self.log_dir = self.data_dir.replace("\\", "/")
|
||||
self.log_dir = self.log_dir.replace("\\", "/")
|
||||
|
||||
if not silent:
|
||||
if self.fileserver_ip != "*" and self.fileserver_ip not in self.ip_local:
|
||||
|
|
Loading…
Reference in a new issue