From dea6ced052ba54fa3f8170276e977b0f406b8665 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Thu, 5 Jun 2014 15:07:13 -0400 Subject: [PATCH] Fixes #118 --- gui/characterSelection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/characterSelection.py b/gui/characterSelection.py index 6c26a3290..2bbf84353 100644 --- a/gui/characterSelection.py +++ b/gui/characterSelection.py @@ -158,7 +158,7 @@ class CharacterSelection(wx.Panel): tip = "Skills required:\n" condensed = cFit.serviceFittingOptions["compactSkills"] if condensed: - dict = self._buildSkillsTooltipCondensed(reqs) + dict = self._buildSkillsTooltipCondensed(reqs, skillsMap = {}) for key in sorted(dict): tip += "%s: %d\n" % (key, dict[key]) else: @@ -226,4 +226,4 @@ class CharacterSelection(wx.Panel): skillMap = self._buildSkillsTooltipCondensed(more, currItem, tabulationLevel + 1, skillsMap) - return skillsMap \ No newline at end of file + return skillsMap