Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2406
975af671146d
child 2847
1843ef6e2656
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a dialog to show the output of the svn log command process. 7 Module implementing a dialog to show the output of the svn log command process.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 13
12 import pysvn 14 import pysvn
13 15
34 Constructor 36 Constructor
35 37
36 @param vcs reference to the vcs object 38 @param vcs reference to the vcs object
37 @param parent parent widget (QWidget) 39 @param parent parent widget (QWidget)
38 """ 40 """
39 super().__init__(parent) 41 super(SvnLogDialog, self).__init__(parent)
40 self.setupUi(self) 42 self.setupUi(self)
41 SvnDialogMixin.__init__(self) 43 SvnDialogMixin.__init__(self)
42 44
43 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) 45 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
44 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) 46 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)

eric ide

mercurial