瀏覽代碼

Fixing when class is missing.

root 5 年之前
父節點
當前提交
d3b23688ec
共有 1 個文件被更改,包括 1 次插入1 次删除
  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):