Skip to content

Commit

Permalink
Correct http.path initilization. Fixes Bug #876927
Browse files Browse the repository at this point in the history
Change-Id: Ibf1893051be0a74c6d45a571a3068c36f99f9cfa
  • Loading branch information
Dragos Manolescu committed Oct 27, 2011
1 parent e9c76f0 commit bead773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swift/common/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def post_account(url, token, headers, http_conn=None):
if resp.status < 200 or resp.status >= 300:
raise ClientException('Account POST failed',
http_scheme=parsed.scheme, http_host=conn.host,
http_port=conn.port, http_path=path, http_status=resp.status,
http_port=conn.port, http_path=parsed.path, http_status=resp.status,
http_reason=resp.reason)


Expand Down

0 comments on commit bead773

Please sign in to comment.