Commit e5c0b8c5 authored by Seblu's avatar Seblu
Browse files

Fix fatal traceback

fatal which now use os._exit, lack of a return code.
parent 9dd12283
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ class Printer(object):
                 fd,
                 nl)
        if quit:
            os._exit()
            os._exit(42)

    def error(self, message, fd=None, nl=os.linesep):
        self.err("%sError%s: %s%s"%(color["lred"],color["red"],message,color["reset"]),