eric6/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py

branch
maintenance
changeset 8273
698ae46f40a4
parent 8218
7c09585bd960
equal deleted inserted replaced
8190:fb0ef164f536 8273:698ae46f40a4
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