Changed newline symbols
This commit is contained in:
parent
121afb44b8
commit
061618d9e6
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue