From 1b9cbef198809f5e765d17b1b6d49bad794dbd0a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 19 Dec 2013 20:43:34 -0800 Subject: [PATCH] Small flake8 fixes -- number of blank lines between top level definitions --- django/template/context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/template/context.py b/django/template/context.py index 7a5ad161d4e..774f7af6b11 100644 --- a/django/template/context.py +++ b/django/template/context.py @@ -150,6 +150,7 @@ class RenderContext(BaseContext): def __getitem__(self, key): return self.dicts[-1][key] + # This is a function rather than module-level procedural code because we only # want it to execute if somebody uses RequestContext. def get_standard_processors():