Skip to content

Commit

Permalink
Fixes #118
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Jun 5, 2014
1 parent c584d66 commit dea6ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/characterSelection.py
Expand Up @@ -158,7 +158,7 @@ def fitChanged(self, event):
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:
Expand Down Expand Up @@ -226,4 +226,4 @@ def _buildSkillsTooltipCondensed(self, reqs, currItem = "", tabulationLevel = 0,

skillMap = self._buildSkillsTooltipCondensed(more, currItem, tabulationLevel + 1, skillsMap)

return skillsMap
return skillsMap

0 comments on commit dea6ced

Please sign in to comment.