Commit c03b0753 authored by Michal Čihař's avatar Michal Čihař

Missing utf-8 encoding

parent 03f824b1
......@@ -302,7 +302,9 @@ def user_page(request, user):
'page_profile': profile,
'page_user': user,
'last_changes': last_changes,
'last_changes_url': urlencode({'user': user.username}),
'last_changes_url': urlencode(
{'user': user.username.encode('utf-8')}
),
'user_projects': user_projects,
}
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment