Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py

changeset 1283
5766284d4393
parent 1274
442c748018c5
child 1289
44519fdf4cc9
equal deleted inserted replaced
1282:c5b7b444942d 1283:5766284d4393
1171 1171
1172 def __hgUnbundle(self): 1172 def __hgUnbundle(self):
1173 """ 1173 """
1174 Private slot used to apply changegroup files. 1174 Private slot used to apply changegroup files.
1175 """ 1175 """
1176 self.vcs.hgUnbundle(self.project.ppath) 1176 shouldReopen = self.vcs.hgUnbundle(self.project.ppath)
1177 if shouldReopen:
1178 res = E5MessageBox.yesNo(self.parent(),
1179 self.trUtf8("Pull"),
1180 self.trUtf8("""The project should be reread. Do this now?"""),
1181 yesDefault=True)
1182 if res:
1183 self.project.reopenProject()
1177 1184
1178 def __hgBisectGood(self): 1185 def __hgBisectGood(self):
1179 """ 1186 """
1180 Private slot used to execute the bisect --good command. 1187 Private slot used to execute the bisect --good command.
1181 """ 1188 """

eric ide

mercurial