Commit 121afb44 authored by Joel Collins's avatar Joel Collins
Browse files

Added newline symbols

parent 9e887c0a
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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