2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the Mercurial configuration page. | 7 Module implementing the Mercurial configuration page. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 import os | 12 import os |
11 | 13 |
12 from PyQt4.QtCore import pyqtSlot | 14 from PyQt4.QtCore import pyqtSlot |
13 | 15 |
23 """ | 25 """ |
24 Constructor | 26 Constructor |
25 | 27 |
26 @param plugin reference to the plugin object | 28 @param plugin reference to the plugin object |
27 """ | 29 """ |
28 super().__init__() | 30 super(MercurialPage, self).__init__() |
29 self.setupUi(self) | 31 self.setupUi(self) |
30 self.setObjectName("MercurialPage") | 32 self.setObjectName("MercurialPage") |
31 | 33 |
32 self.__plugin = plugin | 34 self.__plugin = plugin |
33 | 35 |