Fixes #4852 properly evaluate log_path writability
This commit is contained in:
parent
0ce1123693
commit
e8b54dd073
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ import logging
|
|||
if constants.DEFAULT_LOG_PATH != '':
|
||||
path = constants.DEFAULT_LOG_PATH
|
||||
|
||||
if (os.path.exists(path) and not os.access(path, os.W_OK)) or not os.access(os.path.dirname(path), os.W_OK):
|
||||
if (os.path.exists(path) and not os.access(path, os.W_OK)) and not os.access(os.path.dirname(path), os.W_OK):
|
||||
sys.stderr.write("log file at %s is not writeable, aborting\n" % path)
|
||||
sys.exit(1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue