Update log message in monkey/monkey_island/cc/environment/utils.py

Co-authored-by: Mike Salvatore <mike.s.salvatore@gmail.com>
This commit is contained in:
Shreya Malviya 2021-06-10 17:03:01 +05:30 committed by GitHub
parent 92a71451fb
commit 5d8db4b112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -46,7 +46,6 @@ def _create_secure_directory_windows(path: str):
win32file.CreateDirectory(path, security_attributes)
except Exception as ex:
LOG.error(
f'Could not create a directory at "{path}" (maybe environmental variables could not be '
f"resolved?): {str(ex)}"
f'Could not create a directory at "{path}": {str(ex)}"
)
raise ex