34 @param tagsList list of tags (list of strings) |
34 @param tagsList list of tags (list of strings) |
35 @param branchesList list of branches (list of strings) |
35 @param branchesList list of branches (list of strings) |
36 @param path pathname to determine the repository URL from (string) |
36 @param path pathname to determine the repository URL from (string) |
37 @param parent parent widget of the dialog (QWidget) |
37 @param parent parent widget of the dialog (QWidget) |
38 """ |
38 """ |
39 super(SvnUrlSelectionDialog, self).__init__(parent) |
39 super().__init__(parent) |
40 self.setupUi(self) |
40 self.setupUi(self) |
41 |
41 |
42 if not hasattr(pysvn.Client(), 'diff_summarize'): |
42 if not hasattr(pysvn.Client(), 'diff_summarize'): |
43 self.summaryCheckBox.setEnabled(False) |
43 self.summaryCheckBox.setEnabled(False) |
44 self.summaryCheckBox.setChecked(False) |
44 self.summaryCheckBox.setChecked(False) |