Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2452
fd1cd8a279db
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Subversion Options Dialog for a new project from the repository. 7 Module implementing the Subversion Options Dialog for a new project from the repository.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 13
12 from PyQt4.QtCore import QDir, pyqtSlot 14 from PyQt4.QtCore import QDir, pyqtSlot
13 from PyQt4.QtGui import QDialog, QDialogButtonBox 15 from PyQt4.QtGui import QDialog, QDialogButtonBox
31 Constructor 33 Constructor
32 34
33 @param vcs reference to the version control object 35 @param vcs reference to the version control object
34 @param parent parent widget (QWidget) 36 @param parent parent widget (QWidget)
35 """ 37 """
36 super().__init__(parent) 38 super(SvnNewProjectOptionsDialog, self).__init__(parent)
37 self.setupUi(self) 39 self.setupUi(self)
38 40
39 self.vcsDirectoryCompleter = E5DirCompleter(self.vcsUrlEdit) 41 self.vcsDirectoryCompleter = E5DirCompleter(self.vcsUrlEdit)
40 self.vcsProjectDirCompleter = E5DirCompleter(self.vcsProjectDirEdit) 42 self.vcsProjectDirCompleter = E5DirCompleter(self.vcsProjectDirEdit)
41 43

eric ide

mercurial