Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2406
975af671146d
child 2677
3d4277929fb3
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
5 5
6 """ 6 """
7 Module implementing a dialog to show the output of the svn status command 7 Module implementing a dialog to show the output of the svn status command
8 process. 8 process.
9 """ 9 """
10
11 from __future__ import unicode_literals # __IGNORE_WARNING__
10 12
11 import os 13 import os
12 14
13 import pysvn 15 import pysvn
14 16
38 Constructor 40 Constructor
39 41
40 @param vcs reference to the vcs object 42 @param vcs reference to the vcs object
41 @param parent parent widget (QWidget) 43 @param parent parent widget (QWidget)
42 """ 44 """
43 super().__init__(parent) 45 super(SvnStatusDialog, self).__init__(parent)
44 self.setupUi(self) 46 self.setupUi(self)
45 SvnDialogMixin.__init__(self) 47 SvnDialogMixin.__init__(self)
46 48
47 self.__toBeCommittedColumn = 0 49 self.__toBeCommittedColumn = 0
48 self.__changelistColumn = 1 50 self.__changelistColumn = 1

eric ide

mercurial