Fix log directory path bug

This commit is contained in:
shortcutme 2018-12-04 14:15:48 +01:00
parent 2ceada84a6
commit e0c56c6342
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -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: