Explorar o código

Fixing when class is missing.

root %!s(int64=5) %!d(string=hai) anos
pai
achega
d3b23688ec
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      galaxy.py

+ 1 - 1
galaxy.py

@@ -57,7 +57,7 @@ class GameData(object):
     def special_ports(self):
         """ Save the special class ports 0, 9 """
         return {
-            p: self.ports[p] for p in self.ports if self.ports[p]["class"] in (0, 9)
+            p: self.ports[p] for p in self.ports if 'class' in self.ports[p] and self.ports[p]["class"] in (0, 9)
         }
 
     def display(self):