diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-10 13:57:49 -0800 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-10 13:57:49 -0800 |
commit | 4e1094acdc56ab85c1b7537a5d0246e163007238 (patch) | |
tree | 4e385568801c5dfb7c416b296961bb575ab5dfa6 | |
parent | 998975651ac2f2df7a3f8af16d62d197f451180f (diff) | |
parent | f110e718807ea4747a0ff95138c488961257aa7f (diff) | |
download | nova-4e1094acdc56ab85c1b7537a5d0246e163007238.tar.gz nova-4e1094acdc56ab85c1b7537a5d0246e163007238.tar.xz nova-4e1094acdc56ab85c1b7537a5d0246e163007238.zip |
Merged with upstream
-rw-r--r-- | nova/tests/integrated/api/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/integrated/api/client.py b/nova/tests/integrated/api/client.py index 4cce95f1b..0ce480ae7 100644 --- a/nova/tests/integrated/api/client.py +++ b/nova/tests/integrated/api/client.py @@ -104,7 +104,7 @@ class TestOpenStackClient(object): 'X-Auth-Key': self.auth_key} response = self.request(auth_uri, headers=headers) - + http_status = response.status LOG.debug(_("%(auth_uri)s => code %(http_status)s") % locals()) @@ -131,7 +131,7 @@ class TestOpenStackClient(object): headers['X-Auth-Token'] = auth_result['x-auth-token'] response = self.request(full_uri, **kwargs) - + http_status = response.status LOG.debug(_("%(relative_uri)s => code %(http_status)s") % locals()) |