Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Commit 93fe262

Browse files
committed
Update for changed Config constructor
1 parent 83a2021 commit 93fe262

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sphinxcontrib/versioning/sphinx_.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ def setup(app):
167167
class ConfigInject(SphinxConfig):
168168
"""Inject this extension info self.extensions. Append after user's extensions."""
169169

170-
def __init__(self, dirname, filename, overrides, tags):
170+
def __init__(self, *args):
171171
"""Constructor."""
172-
super(ConfigInject, self).__init__(dirname, filename, overrides, tags)
172+
super(ConfigInject, self).__init__(*args)
173173
self.extensions.append('sphinxcontrib.versioning.sphinx_')
174174

175175

0 commit comments

Comments
 (0)