summaryrefslogtreecommitdiff
path: root/tests/testutils/http_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/http_server.py')
-rw-r--r--tests/testutils/http_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/http_server.py b/tests/testutils/http_server.py
index 129003836..f18290c88 100644
--- a/tests/testutils/http_server.py
+++ b/tests/testutils/http_server.py
@@ -29,7 +29,7 @@ class RequestHandler(SimpleHTTPRequestHandler):
expected_password, directory = self.server.users[user]
if password == expected_password:
return directory
- except:
+ except: # noqa
raise Unauthorized('unauthorized')
return None