eric6/Plugins/VcsPlugins/vcsGit/GitChangeRemoteUrlDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
26 @param remoteUrl URL of the remote repository 26 @param remoteUrl URL of the remote repository
27 @type str 27 @type str
28 @param parent reference to the parent widget 28 @param parent reference to the parent widget
29 @type QWidget 29 @type QWidget
30 """ 30 """
31 super(GitChangeRemoteUrlDialog, self).__init__(parent) 31 super().__init__(parent)
32 self.setupUi(self) 32 self.setupUi(self)
33 33
34 url = QUrl(remoteUrl) 34 url = QUrl(remoteUrl)
35 self.__userInfo = url.userInfo() 35 self.__userInfo = url.userInfo()
36 36

eric ide

mercurial