summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-02-19 23:17:10 +0000
committerGerrit Code Review <review@openstack.org>2014-02-19 23:17:10 +0000
commitf4e057923c8b880b3d25486a72830d938085cd64 (patch)
treed288c203cee16d5491fa2de3f193834c33e26fd4
parent21cec82ff1b0a3c76865cf190c9b02ab2a5cd16d (diff)
parentb5b440d9b6f607ebc59d4f01619f0146d6f0a2ed (diff)
downloadpython-swiftclient-f4e057923c8b880b3d25486a72830d938085cd64.tar.gz
Merge "Remove useless statement"
-rw-r--r--swiftclient/client.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py
index d4f83f1..c41f35a 100644
--- a/swiftclient/client.py
+++ b/swiftclient/client.py
@@ -434,7 +434,6 @@ def get_account(url, token, marker=None, limit=None, prefix=None,
http_status=resp.status, http_reason=resp.reason,
http_response_content=body)
if resp.status == 204:
- body
return resp_headers, []
return resp_headers, json_loads(body)