--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py Sat Apr 10 18:38:27 2021 +0200 @@ -37,7 +37,7 @@ @param vcs reference to the vcs object @param parent parent widget (QWidget) """ - super(SvnLogBrowserDialog, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.__position = QPoint() @@ -156,7 +156,7 @@ self.move(self.__position) self.__resetUI() - super(SvnLogBrowserDialog, self).show() + super().show() def __resetUI(self): """ @@ -789,4 +789,4 @@ self.intercept = False evt.accept() return - super(SvnLogBrowserDialog, self).keyPressEvent(evt) + super().keyPressEvent(evt)