From d034c9489dfae0d432361d33ab7e5eb59cf26fbb Mon Sep 17 00:00:00 2001 From: bkonkle Date: Thu, 15 Sep 2011 10:41:09 -0500 Subject: Remove any remaining uses of self.__class__ with super --- debug_toolbar/panels/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debug_toolbar/panels/template.py') diff --git a/debug_toolbar/panels/template.py b/debug_toolbar/panels/template.py index 41e0afc..79a4871 100644 --- a/debug_toolbar/panels/template.py +++ b/debug_toolbar/panels/template.py @@ -44,7 +44,7 @@ class TemplateDebugPanel(DebugPanel): has_content = True def __init__(self, *args, **kwargs): - super(self.__class__, self).__init__(*args, **kwargs) + super(TemplateDebugPanel, self).__init__(*args, **kwargs) self.templates = [] template_rendered.connect(self._store_template_info) -- cgit v1.2.3