Skip to content

Commit

Permalink
replace super call for old style class
Browse files Browse the repository at this point in the history
  • Loading branch information
nxkb committed Jun 13, 2017
1 parent af1a42a commit ecda45a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maintenance/stubs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ def __init__(self, *args, **kwargs):
StubDoc.__init__(self, *args, **kwargs)

def docmodule_get_missing_modules(self, this_module):
missing = super(self, PEP484StubDoc).docmodule_get_missing_modules(this_module)
missing = StubDoc.docmodule_get_missing_modules(self, this_module)
return missing + self.maybe_modules.values()

def docmodule(self, *args, **kwargs):
Expand Down

0 comments on commit ecda45a

Please sign in to comment.