2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the rebase extension interface. | 7 Module implementing the rebase extension interface. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 import os | 12 import os |
11 | 13 |
12 from PyQt4.QtGui import QDialog | 14 from PyQt4.QtGui import QDialog |
13 | 15 |
23 """ | 25 """ |
24 Constructor | 26 Constructor |
25 | 27 |
26 @param vcs reference to the Mercurial vcs object | 28 @param vcs reference to the Mercurial vcs object |
27 """ | 29 """ |
28 super().__init__(vcs) | 30 super(Rebase, self).__init__(vcs) |
29 | 31 |
30 def hgRebase(self, path): | 32 def hgRebase(self, path): |
31 """ | 33 """ |
32 Public method to rebase changesets to a different branch. | 34 Public method to rebase changesets to a different branch. |
33 | 35 |