--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Fri Oct 25 09:47:48 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Fri Oct 25 17:58:59 2024 +0200 @@ -15,16 +15,19 @@ Class implementing the base class for Mercurial extension interfaces. """ - def __init__(self, vcs): + def __init__(self, vcs, ui=None): """ Constructor @param vcs reference to the Mercurial vcs object @type Hg + @param ui reference to a UI widget (defaults to None) + @type QWidget """ super().__init__(vcs) self.vcs = vcs + self.ui = ui def shutdown(self): """