From 8690f1bb8387ed3ba4fead37c5e3dc4fc0daceac Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 21 Jun 2020 16:58:21 +0100 Subject: [PATCH] Fix old style 'print ' statements --- EDMarketConnector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 5e81ec9b..283be4ae 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -587,7 +587,7 @@ class AppWindow(object): # Disable WinSparkle automatic update checks, IFF configured to do so when in-game if config.getint('disable_autoappupdatecheckingame') and 1: self.updater.setAutomaticUpdatesCheck(False) - print 'Monitor: Disable WinSparkle automatic update checks' + print('Monitor: Disable WinSparkle automatic update checks') # Can start dashboard monitoring if not dashboard.start(self.w, monitor.started): print("Can't start Status monitoring") @@ -611,7 +611,7 @@ class AppWindow(object): # Enable WinSparkle automatic update checks # NB: Do this blindly, in case option got changed whilst in-game self.updater.setAutomaticUpdatesCheck(True) - print 'Monitor: Enable WinSparkle automatic update checks' + print('Monitor: Enable WinSparkle automatic update checks') # cAPI auth def auth(self, event=None):