From 1f4e23e911707e509ac283b3eb0a8c94da8b30d6 Mon Sep 17 00:00:00 2001 From: Jonas Haag <jonas@lophus.org> Date: Sun, 5 Jun 2011 20:35:34 +0200 Subject: [PATCH] Call dict.__init__ in BaseView.__init__. --- klaus.py | 1 + 1 file changed, 1 insertion(+) diff --git a/klaus.py b/klaus.py index cd1d841..b4c9e35 100644 --- a/klaus.py +++ b/klaus.py @@ -103,6 +103,7 @@ class Response(Exception): class BaseView(dict): def __init__(self, env): + dict.__init__(self) self['environ'] = env self.view() -- GitLab