Merge lp:~mhall119/loco-team-portal/fixes-706761 into lp:loco-team-portal

Proposed by Michael Hall
Status: Merged
Approved by: Chris Johnston
Approved revision: 369
Merged at revision: 374
Proposed branch: lp:~mhall119/loco-team-portal/fixes-706761
Merge into: lp:loco-team-portal
Diff against target: 9 lines (+1/-1)
1 file modified
loco_directory/services/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~mhall119/loco-team-portal/fixes-706761
Reviewer Review Type Date Requested Status
LoCo Team Portal Developers Pending
Review via email: mp+47211@code.launchpad.net

Description of the change

Convert values to unicode strings rather than ascii strings

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'loco_directory/services/__init__.py'
2--- loco_directory/services/__init__.py 2010-06-17 11:54:45 +0000
3+++ loco_directory/services/__init__.py 2011-01-24 03:08:44 +0000
4@@ -131,4 +131,4 @@
5 return o
6 elif o is None:
7 return None
8- return str(o)
9+ return unicode(o)

Subscribers

People subscribed via source and target branches