From 8f0ae111c9c9f4b7cd5572159fa53a9e14795b5d Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Tue, 1 Jun 2021 16:35:36 +0200 Subject: [PATCH] fixed color mode bug in error message --- qrzlogger.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qrzlogger.py b/qrzlogger.py index 132860f..d498e37 100755 --- a/qrzlogger.py +++ b/qrzlogger.py @@ -123,9 +123,8 @@ class qrzlogger(): with open(file_name, 'w') as configfile: config.write(configfile) - print(self.errorcol + "\nNo configuration file found. A new configuration file has been created.") + print("\nNo configuration file found. A new configuration file has been created.") print("\nPlease edit the file " + file_name + " and restart the application.\n" ) - print(style.RESET) quit() return config