fix f-string linting error

This commit is contained in:
Robert Kaussow 2023-05-28 22:56:08 +02:00
parent ac7b3d2656
commit ed7fa8cf02
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ class StandardLoader():
if self._is_plugin(obj):
self.rules.append(obj())
except TypeError as e:
sysexit_with_message(f"Failed to load roles file: \n {str(e)}")
sysexit_with_message(f"Failed to load roles file: \n {e!s}")
self.validate()