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):
|
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 "[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