Plugins/VcsPlugins/vcsMercurial/hg.py

changeset 1066
a3dd41fd9ea8
parent 1064
10bdbb173c0f
child 1070
0f4e3c9670f5
equal deleted inserted replaced
1064:10bdbb173c0f 1066:a3dd41fd9ea8
46 from .HgServeDialog import HgServeDialog 46 from .HgServeDialog import HgServeDialog
47 from .HgUtilities import getConfigPath 47 from .HgUtilities import getConfigPath
48 48
49 from .BookmarksExtension.bookmarks import Bookmarks 49 from .BookmarksExtension.bookmarks import Bookmarks
50 from .QueuesExtension.queues import Queues 50 from .QueuesExtension.queues import Queues
51 from .FetchExtension.fetch import Fetch
51 52
52 from .ProjectBrowserHelper import HgProjectBrowserHelper 53 from .ProjectBrowserHelper import HgProjectBrowserHelper
53 54
54 import Preferences 55 import Preferences
55 import Utilities 56 import Utilities
136 137
137 # instantiate the extensions 138 # instantiate the extensions
138 self.__extensions = { 139 self.__extensions = {
139 "bookmarks": Bookmarks(self), 140 "bookmarks": Bookmarks(self),
140 "mq": Queues(self), 141 "mq": Queues(self),
142 "fetch": Fetch(self),
141 } 143 }
142 144
143 def getPlugin(self): 145 def getPlugin(self):
144 """ 146 """
145 Public method to get a reference to the plugin object. 147 Public method to get a reference to the plugin object.

eric ide

mercurial