comparison: Plugins/VcsPlugins/vcsMercurial/HgExtension.py
Plugins/VcsPlugins/vcsMercurial/HgExtension.py
- changeset 1131
- 7781e396c903
- parent 1087
- fb8cd56819a9
- child 1509
- c0b5e693b0eb
equal
deleted
inserted
replaced
18 """ |
18 """ |
19 Constructor |
19 Constructor |
20 |
20 |
21 @param vcs reference to the Mercurial vcs object |
21 @param vcs reference to the Mercurial vcs object |
22 """ |
22 """ |
23 QObject.__init__(self, vcs) |
23 super().__init__(vcs) |
24 |
24 |
25 self.vcs = vcs |
25 self.vcs = vcs |
26 |
26 |
27 def shutdown(self): |
27 def shutdown(self): |
28 """ |
28 """ |