Skip to content

Commit

Permalink
Fixed handling of undefined game component in a profile.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 30, 2006
1 parent 817a792 commit 2f8a2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowberry/plugins/profilelist.py
Expand Up @@ -91,7 +91,7 @@ def makeProfileHTML(profile):
'<td width="48"><img src="' + iconPath + '"></table>'

else:
c = 'game-other'
game = 'game-undefined'
for c in profile.getComponents():
if c[:5] == 'game-':
game = c
Expand Down

0 comments on commit 2f8a2a3

Please sign in to comment.