From 1e910f94d23e2b4dc2ae818c0fe23acec9f014aa Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 17 Sep 2005 23:06:16 +0000 Subject: [PATCH] Fixed mutable-argument bug in template.Context init. Thanks, Luke git-svn-id: http://code.djangoproject.com/svn/django/trunk@644 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/template.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/core/template.py b/django/core/template.py index e727e3e5fa..35b557bbfb 100644 --- a/django/core/template.py +++ b/django/core/template.py @@ -122,7 +122,8 @@ def compile_string(template_string): class Context: "A stack container for variable context" - def __init__(self, dict={}): + def __init__(self, dict=None): + dict = dict or {} self.dicts = [dict] def __repr__(self):