--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py Tue Jan 12 20:03:30 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py Wed Jan 13 17:46:13 2021 +0100 @@ -24,7 +24,7 @@ NAME_INPUT = 1 QUEUE_INPUT = 2 - def __init__(self, mode, title, suppressActive, repodir, vcs, parent=None): + def __init__(self, mode, title, suppressActive, vcs, parent=None): """ Constructor @@ -34,7 +34,6 @@ @param title title for the dialog (string) @param suppressActive flag indicating to not show the name of the active queue (boolean) - @param repodir name of the repository directory (string) @param vcs reference to the vcs object @param parent reference to the parent widget (QWidget) @exception ValueError raised to indicate an invalid dialog mode @@ -49,7 +48,6 @@ raise ValueError("illegal value for mode") self.__mode = mode - self.__repodir = repodir self.__suppressActive = suppressActive self.__hgClient = vcs.getClient() self.vcs = vcs