Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py

changeset 1131
7781e396c903
parent 945
8cd4d08fa9f6
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
23 @param realm name of the realm of the requested credentials (string) 23 @param realm name of the realm of the requested credentials (string)
24 @param username username as supplied by subversion (string) 24 @param username username as supplied by subversion (string)
25 @param may_save flag indicating, that subversion is willing to save 25 @param may_save flag indicating, that subversion is willing to save
26 the answers returned (boolean) 26 the answers returned (boolean)
27 """ 27 """
28 QDialog.__init__(self, parent) 28 super().__init__(parent)
29 self.setupUi(self) 29 self.setupUi(self)
30 30
31 self.realmLabel.setText(self.trUtf8("<b>Enter login data for realm {0}.</b>")\ 31 self.realmLabel.setText(self.trUtf8("<b>Enter login data for realm {0}.</b>")\
32 .format(realm)) 32 .format(realm))
33 self.usernameEdit.setText(username) 33 self.usernameEdit.setText(username)

eric ide

mercurial