Plugins/VcsPlugins/vcsPySvn/SvnCommitDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
31 """ 31 """
32 Constructor 32 Constructor
33 33
34 @param parent parent widget (QWidget) 34 @param parent parent widget (QWidget)
35 """ 35 """
36 QWidget.__init__(self, parent, Qt.WindowFlags(Qt.Window)) 36 super().__init__(parent, Qt.WindowFlags(Qt.Window))
37 self.setupUi(self) 37 self.setupUi(self)
38 38
39 if pysvn.svn_version < (1, 5, 0) or pysvn.version < (1, 6, 0): 39 if pysvn.svn_version < (1, 5, 0) or pysvn.version < (1, 6, 0):
40 self.changeListsGroup.hide() 40 self.changeListsGroup.hide()
41 41

eric ide

mercurial