diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtension.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Wed Jul 13 14:55:47 2022 +0200 @@ -14,20 +14,21 @@ """ Class implementing the base class for Mercurial extension interfaces. """ + def __init__(self, vcs): """ Constructor - + @param vcs reference to the Mercurial vcs object """ super().__init__(vcs) - + self.vcs = vcs - + def shutdown(self): """ Public method used to shutdown the extension interface. - + The method of this base class does nothing. """ pass