--- a/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the subversion repository browser dialog. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + import pysvn from PyQt4.QtCore import QMutexLocker, Qt, pyqtSlot @@ -35,7 +37,7 @@ @param mode mode of the dialog (string, "browse" or "select") @param parent parent widget (QWidget) """ - super().__init__(parent) + super(SvnRepoBrowserDialog, self).__init__(parent) self.setupUi(self) SvnDialogMixin.__init__(self) @@ -278,7 +280,7 @@ if self.focusWidget() == self.urlCombo: return - super().accept() + super(SvnRepoBrowserDialog, self).accept() def getSelectedUrl(self): """