From 0f6a9d185b13741fedcd43e55a562be1cef95713 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Sun, 12 Sep 2010 22:23:55 +0300 Subject: [PATCH] Small change in prices update status, be silent if price update was successful --- gui/builtinStatsViews/priceViewFull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinStatsViews/priceViewFull.py b/gui/builtinStatsViews/priceViewFull.py index b2739949c..332183e3e 100644 --- a/gui/builtinStatsViews/priceViewFull.py +++ b/gui/builtinStatsViews/priceViewFull.py @@ -118,7 +118,7 @@ class PriceViewFull(StatsView): else: if self._timer: self._timer.Stop() - self.labelEMStatus.SetLabel("EVE-METRICS Prices update completed.") + self.labelEMStatus.SetLabel("") modPrice = sum(map(lambda p: p.price or 0, prices[1:])) self.labelPriceShip.SetLabel(formatAmount(shipPrice, 3, 3, 9)) self.labelPriceFittings.SetLabel(formatAmount(modPrice, 3, 3, 9))