Fixed #21268 -- Fixed E303 pep8 warnings

This commit is contained in:
Alasdair Nicol 2013-10-18 00:58:02 +01:00
parent 65d1d65d52
commit bab9123daa
53 changed files with 2 additions and 87 deletions

View file

@ -283,7 +283,6 @@ class TemplateLoaderTests(TestCase):
loader.template_source_loaders = old_loaders
settings.TEMPLATE_DEBUG = old_td
def test_extends_include_missing_baseloader(self):
"""
Tests that the correct template is identified as not existing
@ -1821,9 +1820,9 @@ class TemplateTests(TransRealMixin, TestCase):
'numpy-array-index02': ("{{ var.5 }}", {"var": numpy.array(["first item", "second item"])}, ("", "INVALID")),
})
return tests
class TemplateTagLoading(unittest.TestCase):
def setUp(self):