Skip to content

Commit

Permalink
encoding bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0nx committed May 10, 2013
1 parent 35354fd commit 7d9914f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MeMaTool/mematool/controllers/profile.py
Expand Up @@ -68,7 +68,7 @@ def edit(self):

if member.validate:
tm = Session.query(TmpMember).filter(TmpMember.id == member.uidNumber).first()
member.cn = '{0} {1}'.format(tm.gn, tm.sn)
member.cn = u'{0} {1}'.format(tm.gn, tm.sn)
member.givenName = tm.gn
member.sn = tm.sn
member.homePostalAddress = tm.homePostalAddress
Expand Down

0 comments on commit 7d9914f

Please sign in to comment.