Commit e3058933 by Colin Howe

Merge pull request #16 from git2samus/patch-1

don't use self.__class__ with super()
parents 931055bd 001ea4b6
......@@ -12,7 +12,7 @@ class MongoDebugPanel(DebugPanel):
has_content = True
def __init__(self, *args, **kwargs):
super(self.__class__, self).__init__(*args, **kwargs)
super(MongoDebugPanel, self).__init__(*args, **kwargs)
operation_tracker.install_tracker()
def process_request(self, request):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment