From 9dc79f679ce85f3c817a37b9ee3d788cda06e650 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Sat, 20 Jun 2015 12:11:30 +0100 Subject: [PATCH] In interactive mode notify when retrying for shipyard. --- EDMarketConnector.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 02a9e096..38665c25 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -199,6 +199,8 @@ class AppWindow: self.w.after(2000, lambda:self.getandsend(retrying=True)) return else: + if __debug__ and retrying: print data['lastStarport'].get('ships') and 'Retry for shipyard - Success' or 'Retry for shipyard - Fail' + # stuff we can do when not docked if config.getint('output') & config.OUT_LOG: flightlog.export(data)