From a038b308557dd266440ad077da84e0503ecfd189 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 22 Mar 2021 12:49:13 +0000 Subject: [PATCH] EDMarketConnector: Remove call to deprecated config.getpassword() --- EDMarketConnector.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 4518f946..18932c62 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -224,6 +224,7 @@ if TYPE_CHECKING: """Fake the l10n translation functions for typing.""" return x + if getattr(sys, 'frozen', False): # Under py2exe sys.path[0] is the executable name if platform == 'win32': @@ -532,11 +533,6 @@ class AppWindow(object): self.updater = update.Updater(tkroot=self.w, provider='internal') self.updater.checkForUpdates() # Sparkle / WinSparkle does this automatically for packaged apps - try: - config.get_password('') # Prod SecureStorage on Linux to initialise - except RuntimeError: - pass - # Migration from <= 3.30 for username in config.get('fdev_usernames') or []: config.delete_password(username)