From 19219e73db8a2a4df31bf92b5c3644a4f0b78f30 Mon Sep 17 00:00:00 2001 From: Tyler Smith Date: Thu, 18 Aug 2011 12:58:27 -0700 Subject: [PATCH] Fixing typo --- quantum/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.45.2