Skip to content

Commit

Permalink
Fix #73
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Apr 12, 2014
1 parent 631d97e commit 507c423
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gui/itemStats.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@
import wx.html
from eos.types import Ship, Module, Skill, Booster, Implant, Drone
from gui.utils.numberFormatter import formatAmount
from collections import OrderedDict
import service

try:
from collections import OrderedDict
except ImportError:
from gui.utils.compat import OrderedDict

class ItemStatsDialog(wx.Dialog):
counter = 0
def __init__(self, victim, fullContext=None, pos = wx.DefaultPosition, size = wx.DefaultSize, maximized = False):
Expand Down

0 comments on commit 507c423

Please sign in to comment.