45 """local repository. If the pulled changes add a new branch""" |
45 """local repository. If the pulled changes add a new branch""" |
46 """ head, the head is automatically merged, and the result of""" |
46 """ head, the head is automatically merged, and the result of""" |
47 """ the merge is committed. Otherwise, the working directory""" |
47 """ the merge is committed. Otherwise, the working directory""" |
48 """ is updated to include the new changes.</p>""" |
48 """ is updated to include the new changes.</p>""" |
49 )) |
49 )) |
50 self.hgFetchAct.triggered[()].connect(self.__hgFetch) |
50 self.hgFetchAct.triggered.connect(self.__hgFetch) |
51 self.actions.append(self.hgFetchAct) |
51 self.actions.append(self.hgFetchAct) |
52 |
52 |
53 def initMenu(self, mainMenu): |
53 def initMenu(self, mainMenu): |
54 """ |
54 """ |
55 Public method to generate the extension menu. |
55 Public method to generate the extension menu. |