Added newline symbols
This commit is contained in:
parent
9e887c0a48
commit
121afb44b8
1 changed files with 2 additions and 2 deletions
|
|
@ -24,10 +24,10 @@ class Source:
|
||||||
class WarningSource(Source):
|
class WarningSource(Source):
|
||||||
@property
|
@property
|
||||||
def message(self):
|
def message(self):
|
||||||
return bcolors.WARNING + self._message + bcolors.ENDC
|
return "[!] " + bcolors.WARNING + self._message + bcolors.ENDC
|
||||||
|
|
||||||
|
|
||||||
class ErrorSource(Source):
|
class ErrorSource(Source):
|
||||||
@property
|
@property
|
||||||
def message(self):
|
def message(self):
|
||||||
return bcolors.FAIL + self._message + bcolors.ENDC
|
return "[X] " + bcolors.FAIL + self._message + bcolors.ENDC
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue