32 @param tagsList list of tags (list of strings) |
32 @param tagsList list of tags (list of strings) |
33 @param branchesList list of branches (list of strings) |
33 @param branchesList list of branches (list of strings) |
34 @param path pathname to determine the repository URL from (string) |
34 @param path pathname to determine the repository URL from (string) |
35 @param parent parent widget of the dialog (QWidget) |
35 @param parent parent widget of the dialog (QWidget) |
36 """ |
36 """ |
37 super(SvnUrlSelectionDialog, self).__init__(parent) |
37 super().__init__(parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 |
39 |
40 if vcs.version < (1, 4, 0): |
40 if vcs.version < (1, 4, 0): |
41 self.summaryCheckBox.setEnabled(False) |
41 self.summaryCheckBox.setEnabled(False) |
42 self.summaryCheckBox.setChecked(False) |
42 self.summaryCheckBox.setChecked(False) |