mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-10 12:22:27 +03:00
Fix old style 'print ' statements
This commit is contained in:
parent
a40b0e33ca
commit
8690f1bb83
@ -587,7 +587,7 @@ class AppWindow(object):
|
|||||||
# Disable WinSparkle automatic update checks, IFF configured to do so when in-game
|
# Disable WinSparkle automatic update checks, IFF configured to do so when in-game
|
||||||
if config.getint('disable_autoappupdatecheckingame') and 1:
|
if config.getint('disable_autoappupdatecheckingame') and 1:
|
||||||
self.updater.setAutomaticUpdatesCheck(False)
|
self.updater.setAutomaticUpdatesCheck(False)
|
||||||
print 'Monitor: Disable WinSparkle automatic update checks'
|
print('Monitor: Disable WinSparkle automatic update checks')
|
||||||
# Can start dashboard monitoring
|
# Can start dashboard monitoring
|
||||||
if not dashboard.start(self.w, monitor.started):
|
if not dashboard.start(self.w, monitor.started):
|
||||||
print("Can't start Status monitoring")
|
print("Can't start Status monitoring")
|
||||||
@ -611,7 +611,7 @@ class AppWindow(object):
|
|||||||
# Enable WinSparkle automatic update checks
|
# Enable WinSparkle automatic update checks
|
||||||
# NB: Do this blindly, in case option got changed whilst in-game
|
# NB: Do this blindly, in case option got changed whilst in-game
|
||||||
self.updater.setAutomaticUpdatesCheck(True)
|
self.updater.setAutomaticUpdatesCheck(True)
|
||||||
print 'Monitor: Enable WinSparkle automatic update checks'
|
print('Monitor: Enable WinSparkle automatic update checks')
|
||||||
|
|
||||||
# cAPI auth
|
# cAPI auth
|
||||||
def auth(self, event=None):
|
def auth(self, event=None):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user