From e0c56c63423bf52e54238b4321bc420c5655468b Mon Sep 17 00:00:00 2001 From: shortcutme Date: Tue, 4 Dec 2018 14:15:48 +0100 Subject: [PATCH] Fix log directory path bug --- src/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.py b/src/Config.py index 7ed8a6f3..739899bc 100644 --- a/src/Config.py +++ b/src/Config.py @@ -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: