Fix call to log helper

This commit is contained in:
Alan Hamlett 2022-06-08 07:43:01 -04:00
parent fe582c84b9
commit e15c514ef3
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ def createSymlink():
if not is_win:
os.chmod(link, 509) # 755
except:
log(traceback.format_exc())
log(WARNING, traceback.format_exc())
class SSLCertVerificationDisabled(object):