Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
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 QDialog.__init__(self, parent) 37 super().__init__(parent)
38 self.setupUi(self) 38 self.setupUi(self)
39 39
40 if not hasattr(pysvn.Client(), 'diff_summarize'): 40 if not hasattr(pysvn.Client(), 'diff_summarize'):
41 self.summaryCheckBox.setEnabled(False) 41 self.summaryCheckBox.setEnabled(False)
42 self.summaryCheckBox.setChecked(False) 42 self.summaryCheckBox.setChecked(False)

eric ide

mercurial