Added newline symbols

This commit is contained in:
Joel Collins 2020-11-06 16:11:53 +00:00
parent 9e887c0a48
commit 121afb44b8

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 bcolors.FAIL + self._message + bcolors.ENDC
return "[X] " + bcolors.FAIL + self._message + bcolors.ENDC