From: Tyler Smith Date: Thu, 18 Aug 2011 19:58:27 +0000 (-0700) Subject: Fixing typo X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=19219e73db8a2a4df31bf92b5c3644a4f0b78f30;p=openstack-build%2Fneutron-build.git Fixing typo --- diff --git a/quantum/client.py b/quantum/client.py index b2459ea57..2e55dfb3e 100644 --- a/quantum/client.py +++ b/quantum/client.py @@ -160,7 +160,7 @@ class Client(object): self.logger.debug(body) conn.request(method, action, body, headers) - res = c.getresponse() + res = conn.getresponse() status_code = self.get_status_code(res) data = res.read()