We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ae20ef commit 63ec3f9Copy full SHA for 63ec3f9
1 file changed
ietf/idtracker/models.py
@@ -271,7 +271,7 @@ def __unicode__(self):
271
return u"(Person #%s)" % self.person_or_org_tag
272
return u"%s %s" % ( self.first_name or u"<nofirst>", self.last_name or u"<nolast>")
273
def email(self, priority=1, type=None):
274
- name = str(self)
+ name = unicode(self)
275
email = ''
276
types = type and [ type ] or [ "INET", "Prim", None ]
277
for type in types:
0 commit comments