Changed newline symbols

This commit is contained in:
Joel Collins 2020-11-06 16:15:26 +00:00
parent 121afb44b8
commit 061618d9e6

View file

@ -24,10 +24,10 @@ class Source:
class WarningSource(Source):
@property
def message(self):
return "[!] " + bcolors.WARNING + self._message + bcolors.ENDC
return "[?] " + bcolors.WARNING + self._message + bcolors.ENDC
class ErrorSource(Source):
@property
def message(self):
return "[X] " + bcolors.FAIL + self._message + bcolors.ENDC
return "[!] " + bcolors.FAIL + self._message + bcolors.ENDC