From d552e6c8847fb1a32880f1a2912af9b472f0f40d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 22 Oct 2011 18:07:14 -0400 Subject: [PATCH] pep8 all the things --- test_requests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_requests.py b/test_requests.py index 188cbc0933..37d2a7d9ae 100755 --- a/test_requests.py +++ b/test_requests.py @@ -17,7 +17,6 @@ import json - # TODO: Detect an open port. PORT = os.environ.get('HTTPBIN_PORT', '7077') @@ -47,8 +46,9 @@ def setUp(self): if not _httpbin: - self.httpbin = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:%s' % (PORT)) + c = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:%s' % (PORT)) + self.httpbin = c _httpbin = True time.sleep(1)