Skip to content

Commit

Permalink
Fix F353 static and class for Unknown systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Valtyr Farshield committed Oct 4, 2016
1 parent 95f02b5 commit 7dad74d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion resources/database/statics.csv
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ M001;0
Q003;0
Z006;0
C125;1
F355;1
F353;1
H121;1
J244;1
L614;1
Expand Down
2 changes: 1 addition & 1 deletion src/shortcircuit/model/evedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_whsize_by_code(self, code):

def _get_class(self, system_id):
db_class = self.system_desc[system_id][1]
if db_class in ["HS", "LS", "NS"]:
if db_class in ["HS", "LS", "NS", "Unknown"]:
sys_class = "kspace"
elif db_class in ["C14", "C15", "C16", "C17", "C18"]:
sys_class = "drifter"
Expand Down
2 changes: 1 addition & 1 deletion src/shortcircuit/view/gui_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'resources\ui\gui_about.ui'
#
# Created: Thu Jun 30 11:59:01 2016
# Created: Tue Oct 04 22:22:07 2016
# by: pyside-uic 0.2.15 running on PySide 1.2.4
#
# WARNING! All changes made in this file will be lost!
Expand Down
2 changes: 1 addition & 1 deletion src/shortcircuit/view/gui_crest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'resources\ui\gui_crest.ui'
#
# Created: Thu Jun 30 11:59:01 2016
# Created: Tue Oct 04 22:22:08 2016
# by: pyside-uic 0.2.15 running on PySide 1.2.4
#
# WARNING! All changes made in this file will be lost!
Expand Down
2 changes: 1 addition & 1 deletion src/shortcircuit/view/gui_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'resources\ui\gui_main.ui'
#
# Created: Thu Jun 30 11:58:59 2016
# Created: Tue Oct 04 22:22:06 2016
# by: pyside-uic 0.2.15 running on PySide 1.2.4
#
# WARNING! All changes made in this file will be lost!
Expand Down
2 changes: 1 addition & 1 deletion src/shortcircuit/view/gui_tripwire.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'resources\ui\gui_tripwire.ui'
#
# Created: Thu Jun 30 11:59:00 2016
# Created: Tue Oct 04 22:22:06 2016
# by: pyside-uic 0.2.15 running on PySide 1.2.4
#
# WARNING! All changes made in this file will be lost!
Expand Down
4 changes: 2 additions & 2 deletions src/shortcircuit/view/resources_rc.py

Large diffs are not rendered by default.

0 comments on commit 7dad74d

Please sign in to comment.