Commit a30fc539 authored by Gabriel Monnerat's avatar Gabriel Monnerat

erp5_web_renderjs_ui: avoid use unicode string

parent 0e21b3c5
......@@ -22,7 +22,7 @@ assert password_key
validation_message_list = portal.portal_password.analyzePassword(password, password_key)
if validation_message_list:
message = u' '.join([str(x) for x in validation_message_list])
message = ' '.join([str(x) for x in validation_message_list])
return response.redirect(
"%s&portal_status_message=%s" % (
new_url,
......
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