From 5b6039cad5992e988e2f65eb4bc5ac9a13a072fc Mon Sep 17 00:00:00 2001
From: John Chilton <jmchilton@gmail.com>
Date: Fri, 29 Nov 2013 07:27:53 -0600
Subject: [PATCH] PEP-8 fixes for previous commit.

---
 test/client_test.py | 2 +-
 test/test_utils.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/client_test.py b/test/client_test.py
index a0efcf45..9932b61e 100644
--- a/test/client_test.py
+++ b/test/client_test.py
@@ -180,7 +180,7 @@ def test_download_output():
     client.expect_open(request_checker, b"test output contents")
     client.fetch_output(temp_file.name, ".")
 
-    with open(temp_file.name, "r") as f: 
+    with open(temp_file.name, "r") as f:
         contents = f.read(1024)
         assert contents == "test output contents", "Unxpected contents %s" % contents
 
diff --git a/test/test_utils.py b/test/test_utils.py
index 99a4f7f1..2f6210f4 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -104,7 +104,7 @@ def test_server(global_conf={}, app_conf={}, test_conf={}):
             from paste.exceptions.errormiddleware import ErrorMiddleware
             error_app = ErrorMiddleware(app.app, debug=True, error_log="errors")
         except ImportError:
-            # paste.exceptions not available for Python 3. 
+            # paste.exceptions not available for Python 3.
             error_app = app
         server = StopableWSGIServer.create(error_app)
         try:
-- 
GitLab