1033 |
1033 |
1034 def __hgUnbundle(self): |
1034 def __hgUnbundle(self): |
1035 """ |
1035 """ |
1036 Protected slot used to apply changegroup files. |
1036 Protected slot used to apply changegroup files. |
1037 """ |
1037 """ |
1038 self.vcs.hgUnbundle(self.project.ppath) |
1038 shouldReopen = self.vcs.hgUnbundle(self.project.ppath) |
|
1039 if shouldReopen: |
|
1040 res = E5MessageBox.yesNo(self.parent(), |
|
1041 self.trUtf8("Unbundle"), |
|
1042 self.trUtf8("""The project should be reread. Do this now?"""), |
|
1043 yesDefault=True) |
|
1044 if res: |
|
1045 self.project.reopenProject() |
1039 |
1046 |
1040 def __hgBisectGood(self): |
1047 def __hgBisectGood(self): |
1041 """ |
1048 """ |
1042 Protected slot used to execute the bisect --good command. |
1049 Protected slot used to execute the bisect --good command. |
1043 """ |
1050 """ |