diff --git a/django/contrib/messages/tests/test_cookie.py b/django/contrib/messages/tests/test_cookie.py index e57cc33946..c4e2b0abfb 100644 --- a/django/contrib/messages/tests/test_cookie.py +++ b/django/contrib/messages/tests/test_cookie.py @@ -126,8 +126,8 @@ class CookieTest(BaseTests, TestCase): messages = [ { 'message': Message(constants.INFO, 'Test message'), - 'message_list': [Message(constants.INFO, 'message %s') \ - for x in range(5)] + [{'another-message': \ + 'message_list': [Message(constants.INFO, 'message %s') + for x in range(5)] + [{'another-message': Message(constants.ERROR, 'error')}], }, Message(constants.INFO, 'message %s'), diff --git a/django/contrib/sites/managers.py b/django/contrib/sites/managers.py index 0f4eabaaa7..1cd2416377 100644 --- a/django/contrib/sites/managers.py +++ b/django/contrib/sites/managers.py @@ -14,7 +14,7 @@ class CurrentSiteManager(models.Manager): # If a custom name is provided, make sure the field exists on the model if self.__field_name is not None and self.__field_name not in field_names: - raise ValueError("%s couldn't find a field named %s in %s." % \ + raise ValueError("%s couldn't find a field named %s in %s." % (self.__class__.__name__, self.__field_name, self.model._meta.object_name)) # Otherwise, see if there is a field called either 'site' or 'sites' @@ -31,7 +31,7 @@ class CurrentSiteManager(models.Manager): if not isinstance(field, (models.ForeignKey, models.ManyToManyField)): raise TypeError("%s must be a ForeignKey or ManyToManyField." %self.__field_name) except FieldDoesNotExist: - raise ValueError("%s couldn't find a field named %s in %s." % \ + raise ValueError("%s couldn't find a field named %s in %s." % (self.__class__.__name__, self.__field_name, self.model._meta.object_name)) self.__is_validated = True diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index 19aaa4aedc..5687cb2bc0 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -262,7 +262,7 @@ class ManagementUtility(object): try: app_name = commands[subcommand] except KeyError: - sys.stderr.write("Unknown command: %r\nType '%s help' for usage.\n" % \ + sys.stderr.write("Unknown command: %r\nType '%s help' for usage.\n" % (subcommand, self.prog_name)) sys.exit(1) if isinstance(app_name, BaseCommand): diff --git a/django/core/management/commands/createcachetable.py b/django/core/management/commands/createcachetable.py index 253f5b5201..3254595033 100644 --- a/django/core/management/commands/createcachetable.py +++ b/django/core/management/commands/createcachetable.py @@ -63,7 +63,7 @@ class Command(BaseCommand): field_output.append("UNIQUE") if f.db_index: unique = "UNIQUE " if f.unique else "" - index_output.append("CREATE %sINDEX %s ON %s (%s);" % \ + index_output.append("CREATE %sINDEX %s ON %s (%s);" % (unique, qn('%s_%s' % (tablename, f.name)), qn(tablename), qn(f.name))) table_output.append(" ".join(field_output)) diff --git a/django/core/management/commands/dbshell.py b/django/core/management/commands/dbshell.py index 74659208d4..cda1c8e990 100644 --- a/django/core/management/commands/dbshell.py +++ b/django/core/management/commands/dbshell.py @@ -24,5 +24,5 @@ class Command(BaseCommand): # isn't installed. There's a possibility OSError would be raised # for some other reason, in which case this error message would be # inaccurate. Still, this message catches the common case. - raise CommandError('You appear not to have the %r program installed or on your path.' % \ + raise CommandError('You appear not to have the %r program installed or on your path.' % connection.client.executable_name) diff --git a/django/core/serializers/xml_serializer.py b/django/core/serializers/xml_serializer.py index 215ae2776d..116c5483dc 100644 --- a/django/core/serializers/xml_serializer.py +++ b/django/core/serializers/xml_serializer.py @@ -271,7 +271,7 @@ class Deserializer(base.Deserializer): model_identifier = node.getAttribute(attr) if not model_identifier: raise base.DeserializationError( - "<%s> node is missing the required '%s' attribute" \ + "<%s> node is missing the required '%s' attribute" % (node.nodeName, attr)) try: Model = models.get_model(*model_identifier.split(".")) @@ -279,7 +279,7 @@ class Deserializer(base.Deserializer): Model = None if Model is None: raise base.DeserializationError( - "<%s> node has invalid model identifier: '%s'" % \ + "<%s> node has invalid model identifier: '%s'" % (node.nodeName, model_identifier)) return Model diff --git a/setup.cfg b/setup.cfg index 48414caad0..49ce1725d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh [flake8] exclude=./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./tests/comment_tests/*,./django/test/_doctest.py -ignore=E123,E124,E125,E126,E127,E128,E225,E226,E241,E251,E302,E501,E203,E221,E227,E231,E261,E301,E303,E502,F401,F403,F841,W601 +ignore=E123,E124,E125,E126,E127,E128,E225,E226,E241,E251,E302,E501,E203,E221,E227,E231,E261,E301,E303,F401,F403,F841,W601 [metadata] license-file = LICENSE diff --git a/tests/admin_changelist/tests.py b/tests/admin_changelist/tests.py index 54a4993171..ec62a02f3b 100644 --- a/tests/admin_changelist/tests.py +++ b/tests/admin_changelist/tests.py @@ -168,7 +168,7 @@ class ChangeListTests(TestCase): m.list_display = ['id', 'name', 'parent'] m.list_display_links = ['id'] m.list_editable = ['name'] - self.assertRaises(IncorrectLookupParameters, lambda: \ + self.assertRaises(IncorrectLookupParameters, lambda: ChangeList(request, Child, m.list_display, m.list_display_links, m.list_filter, m.date_hierarchy, m.search_fields, m.list_select_related, m.list_per_page, m.list_max_show_all, m.list_editable, m)) 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)) ) diff --git a/tests/defaultfilters/tests.py b/tests/defaultfilters/tests.py index d51bebcd7d..f347ceef3f 100644 --- a/tests/defaultfilters/tests.py +++ b/tests/defaultfilters/tests.py @@ -124,7 +124,7 @@ class DefaultFiltersTests(TestCase): self.assertEqual(linenumbers('line 1\nline 2'), '1. line 1\n2. line 2') self.assertEqual(linenumbers('\n'.join(['x'] * 10)), - '01. x\n02. x\n03. x\n04. x\n05. x\n06. x\n07. '\ + '01. x\n02. x\n03. x\n04. x\n05. x\n06. x\n07. ' 'x\n08. x\n09. x\n10. x') def test_lower(self): @@ -138,7 +138,7 @@ class DefaultFiltersTests(TestCase): self.assertEqual(make_list(1234), ['1', '2', '3', '4']) def test_slugify(self): - self.assertEqual(slugify(' Jack & Jill like numbers 1,2,3 and 4 and'\ + self.assertEqual(slugify(' Jack & Jill like numbers 1,2,3 and 4 and' ' silly characters ?%.$!/'), 'jack-jill-like-numbers-123-and-4-and-silly-characters') @@ -170,7 +170,7 @@ class DefaultFiltersTests(TestCase): def test_truncatewords_html(self): self.assertEqual(truncatewords_html( '
one two - three
four five
one two - '\
+ self.assertEqual(truncatewords_html(' one two - '
'three one two ...
four five
line 2')
def test_removetags(self):
- self.assertEqual(removetags('some html with disallowed tags', 'script img'),
'some html with alert("You smell") disallowed tags')
- self.assertEqual(striptags('some html with disallowed
tags'),
'some html with alert("You smell") disallowed tags')
@@ -483,20 +483,20 @@ class DefaultFiltersTests(TestCase):
self.assertEqual(
unordered_list(['item 1', ['item 1.1', 'item1.2'], 'item 2']),
- '\t
\n\t\t
\n\t\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t
\n\t\t
\n\t\n\t\t\t
\n\t\t\n\t\t\t\t
\n\t\t\t\n\t\t
\n\t\t\t
\n\t\t\n\t\t
\n\t\n\t\t\t
\n\t\t\n\t\t
\n\t\n\t\t
\n\t\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\n\t\t
\n\t\n\t\t\t
\n\t\t