Commit 4bb9d77e authored by Ivan Tyagov's avatar Ivan Tyagov

Minor fix.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25737 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0337971b
......@@ -410,8 +410,9 @@ class WizardTool(BaseTool):
user_and_password[0] and user_and_password[1]):
friendly_server_url = server_url
schema = urlparse(server_url)
server_url = '%s://%s:%s@%s%s' %(schema[0], user_and_password[0], user_and_password[1],
schema[1], schema[2])
server_url = '%s://%s@%s%s' %(schema[0],
'%s:%s' %(user_and_password[0], user_and_password[1]), \
schema[1], schema[2])
witch_tool = self._getRemoteWitchTool(server_url)
parameter_dict = self.REQUEST.form.copy()
if use_proxy:
......
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