Fixed #21267 -- Fixed E502 pep8 warnings

This commit is contained in:
Alasdair Nicol 2013-10-18 01:24:41 +01:00
parent dfb4cb9970
commit 65d1d65d52
11 changed files with 46 additions and 46 deletions

View file

@ -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))
)