VCS/ProjectHelper.py

changeset 97
c4086afea02b
parent 55
b5c84934de9c
child 453
a81097a85889
child 792
a13346916170
equal deleted inserted replaced
96:9624a110667d 97:c4086afea02b
6 """ 6 """
7 Module implementing the base class of the VCS project helper. 7 Module implementing the base class of the VCS project helper.
8 """ 8 """
9 9
10 import os 10 import os
11 import sys
12 import shutil 11 import shutil
13 import copy 12 import copy
14 13
15 from PyQt4.QtCore import * 14 from PyQt4.QtCore import *
16 from PyQt4.QtGui import * 15 from PyQt4.QtGui import *
17 16
18 from E5Gui.E5Application import e5App 17 from E5Gui.E5Application import e5App
19 18
20 import VCS
21 from .CommandOptionsDialog import vcsCommandOptionsDialog 19 from .CommandOptionsDialog import vcsCommandOptionsDialog
22 from .RepositoryInfoDialog import VcsRepositoryInfoDialog 20 from .RepositoryInfoDialog import VcsRepositoryInfoDialog
23 21
24 from E5Gui.E5Action import E5Action 22 from E5Gui.E5Action import E5Action
25 23
26 import Utilities
27 import Preferences 24 import Preferences
28 25
29 class VcsProjectHelper(QObject): 26 class VcsProjectHelper(QObject):
30 """ 27 """
31 Class implementing the base class of the VCS project helper. 28 Class implementing the base class of the VCS project helper.

eric ide

mercurial