summaryrefslogtreecommitdiff
path: root/tests/admin_widgets/tests.py
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 01:24:41 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 01:28:32 +0100
commit65d1d65d52a87bba22845bcb7c3c921a8789ec19 (patch)
tree872e3bb19d81395d60f13019844a042cb00252f5 /tests/admin_widgets/tests.py
parentdfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (diff)
Fixed #21267 -- Fixed E502 pep8 warnings
Diffstat (limited to 'tests/admin_widgets/tests.py')
-rw-r--r--tests/admin_widgets/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py
index 3613fa2207..360902cf68 100644
--- a/tests/admin_widgets/tests.py
+++ b/tests/admin_widgets/tests.py
@@ -54,7 +54,7 @@ class AdminFormfieldForDBFieldTests(TestCase):
# Check that we got a field of the right type
self.assertTrue(
isinstance(widget, widgetclass),
- "Wrong widget for %s.%s: expected %s, got %s" % \
+ "Wrong widget for %s.%s: expected %s, got %s" %
(model.__class__.__name__, fieldname, widgetclass, type(widget))
)