Skip to content

Commit

Permalink
another unicode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsw committed Oct 21, 2008
1 parent 62dcc18 commit ec7cfe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/smartersql.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def __init__(self, **kw):
notnull = False

display = lambda self, x: unicode(x)
toxml = lambda self, obj: '>' + web.htmlquote(obj)
toxml = lambda self, obj: '>' + web.htmlquote(unicode(obj))

class Reference (Column):
def __init__(self, target, **kw):
Expand Down

0 comments on commit ec7cfe8

Please sign in to comment.