summaryrefslogtreecommitdiff
path: root/tests/test_client
diff options
context:
space:
mode:
authorcoagulant <baryshev@gmail.com>2013-11-03 01:02:56 +0400
committerTim Graham <timograham@gmail.com>2013-11-02 18:20:39 -0400
commit3bc0d46a840f17dce561daca8a6b8690b2cf5d0a (patch)
treec25954abbde0c4c06af7f862effcd351047cddf9 /tests/test_client
parent2a03a9a9a1c4517be75e72899e545b0bc9dd0688 (diff)
Fixed all E261 warnings
Diffstat (limited to 'tests/test_client')
-rw-r--r--tests/test_client/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client/tests.py b/tests/test_client/tests.py
index cd59f50213..5e4673c3c5 100644
--- a/tests/test_client/tests.py
+++ b/tests/test_client/tests.py
@@ -438,7 +438,7 @@ class ClientTest(TestCase):
"Request a page that is known to throw an error"
self.assertRaises(KeyError, self.client.get, "/test_client/broken_view/")
- #Try the same assertion, a different way
+ # Try the same assertion, a different way
try:
self.client.get('/test_client/broken_view/')
self.fail('Should raise an error')