Missed one thing

This commit is contained in:
Raoul Snyman 2017-10-07 00:08:25 -07:00
parent b406cfd5a8
commit bc2fac7cfd
1 changed files with 1 additions and 1 deletions

View File

@ -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. :param openlp.core.common.path.Path log_path: The file to save the log to.
:rtype: None :rtype: None
""" """
create_paths(log_path, True) create_paths(log_path, do_not_log=True)
file_path = log_path / 'openlp.log' file_path = log_path / 'openlp.log'
# TODO: FileHandler accepts a Path object in Py3.6 # TODO: FileHandler accepts a Path object in Py3.6
logfile = logging.FileHandler(str(file_path), 'w', encoding='UTF-8') logfile = logging.FileHandler(str(file_path), 'w', encoding='UTF-8')