Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3145
a9de05d4a22f
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a dialog to enter the data for a switch operation. 7 Module implementing a dialog to enter the data for a switch operation.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QDialog 12 from PyQt4.QtGui import QDialog
11 13
12 from .Ui_SvnSwitchDialog import Ui_SvnSwitchDialog 14 from .Ui_SvnSwitchDialog import Ui_SvnSwitchDialog
13 15
24 @param reposURL repository path (string) or None 26 @param reposURL repository path (string) or None
25 @param standardLayout flag indicating the layout of the 27 @param standardLayout flag indicating the layout of the
26 repository (boolean) 28 repository (boolean)
27 @param parent parent widget (QWidget) 29 @param parent parent widget (QWidget)
28 """ 30 """
29 super().__init__(parent) 31 super(SvnSwitchDialog, self).__init__(parent)
30 self.setupUi(self) 32 self.setupUi(self)
31 33
32 self.tagCombo.clear() 34 self.tagCombo.clear()
33 self.tagCombo.addItems(sorted(taglist)) 35 self.tagCombo.addItems(sorted(taglist))
34 36

eric ide

mercurial