From bc2fac7cfd85ad701762a2f8e76b62b558e217a9 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 7 Oct 2017 00:08:25 -0700 Subject: [PATCH] Missed one thing --- openlp/core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 67808e475..9e0a352e4 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -320,7 +320,7 @@ def set_up_logging(log_path): :param openlp.core.common.path.Path log_path: The file to save the log to. :rtype: None """ - create_paths(log_path, True) + create_paths(log_path, do_not_log=True) file_path = log_path / 'openlp.log' # TODO: FileHandler accepts a Path object in Py3.6 logfile = logging.FileHandler(str(file_path), 'w', encoding='UTF-8')