Skip to content

Commit

Permalink
Convert Name to str for call message HTML
Browse files Browse the repository at this point in the history
Fixes #37.
  • Loading branch information
Terrance committed Jan 6, 2017
1 parent 1db184f commit 600effb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skpy/msg.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def html(self):
tag = makeTag("partlist", type=partType, alt="")
for user in self.users:
conTag = makeTag("part", identity=user.id)
conTag.append(makeTag("name", user.name))
conTag.append(makeTag("name", str(user.name)))
tag.append(conTag)
return tag

Expand Down

0 comments on commit 600effb

Please sign in to comment.