Skip to content

Commit

Permalink
Repasse en unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-D committed Jul 24, 2014
1 parent 9f77896 commit 59b8303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zds/utils/templatetags/append_to_get.py
Expand Up @@ -38,7 +38,7 @@ def render(self, context):
for (key, value) in get.items():
if str(value):
for v in value:
path += "&".join(["{0}={1}".format(key, str(v))])
path += u"&".join(["{0}={1}".format(key, str(v))])

return path

Expand Down

0 comments on commit 59b8303

Please sign in to comment.