Explorar el Código

Better reporting on what exactly is missing from the Trade report.

Steve Thielemann hace 5 años
padre
commit
bb99113961
Se han modificado 1 ficheros con 7 adiciones y 3 borrados
  1. 7 3
      flexible.py

+ 7 - 3
flexible.py

@@ -1011,8 +1011,12 @@ class ProxyMenu(object):
         if key == "T":
             self.queue_game.put(self.c + key + self.r + self.nl)
 
-            if not hasattr(self.game, 'portdata') or not hasattr(self.game, 'warpdata'):
-                self.queue_game.put("Missing portdata/warpdata." + self.nl)
+            if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
+                self.queue_game.put("Missing portdata and warpdata." + self.nl)
+            elif not hasattr(self.game, 'portdata'):
+                self.queue_game.put("Missing portdata." + self.nl)
+            elif not hasattr(self.game, 'warpdata'):
+                self.queue_game.put("Missing warpdata." + self.nl)
             else:
                 # Ok, for each port
                 ok_trades = []
@@ -1027,7 +1031,7 @@ class ProxyMenu(object):
                         # Ok, let's look into it.
                         if not sector in self.game.warpdata:
                             continue
-                            
+
                         warps = self.game.warpdata[sector]
                         for w in warps:
                             # Verify that we have that warp's info, and that the sector is in it.