32 @param host host name |
32 @param host host name |
33 @type str |
33 @type str |
34 @param protocol name of the minimum protocol for the host |
34 @param protocol name of the minimum protocol for the host |
35 @type str |
35 @type str |
36 """ |
36 """ |
37 super(HgUserConfigHostMinimumProtocolDialog, self).__init__(parent) |
37 super().__init__(parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 |
39 |
40 self.minimumProtocolComboBox.addItem("", "") |
40 self.minimumProtocolComboBox.addItem("", "") |
41 for minimumProtocol in sorted(allowedProtocols.keys()): |
41 for minimumProtocol in sorted(allowedProtocols.keys()): |
42 self.minimumProtocolComboBox.addItem( |
42 self.minimumProtocolComboBox.addItem( |