eric6/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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)

eric ide

mercurial