summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-19 20:43:34 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-19 20:43:34 -0800
commit1b9cbef198809f5e765d17b1b6d49bad794dbd0a (patch)
tree0a1049711d7a22e01286ce2a8cf40066ffeaead2
parent832ab0dbaacf381d15445259f292d88175ff84f2 (diff)
Small flake8 fixes -- number of blank lines between top level definitions
-rw-r--r--django/template/context.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/template/context.py b/django/template/context.py
index 7a5ad161d4..774f7af6b1 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():