From 061618d9e6a9813f7d2af31102bbf93d7af6c140 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Fri, 6 Nov 2020 16:15:26 +0000 Subject: [PATCH] Changed newline symbols --- openflexure_microscope/rescue/error_sources.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openflexure_microscope/rescue/error_sources.py b/openflexure_microscope/rescue/error_sources.py index 8f7f7697..67910701 100644 --- a/openflexure_microscope/rescue/error_sources.py +++ b/openflexure_microscope/rescue/error_sources.py @@ -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