diff options
Diffstat (limited to 'django/template/context.py')
-rw-r--r-- | django/template/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/context.py b/django/template/context.py index f50fb07598..44a97f95a8 100644 --- a/django/template/context.py +++ b/django/template/context.py @@ -7,7 +7,7 @@ class ContextPopException(Exception): "pop() has been called more times than push()" pass -class Context: +class Context(object): "A stack container for variable context" def __init__(self, dict_=None): dict_ = dict_ or {} |