summaryrefslogtreecommitdiffstats
path: root/layman/overlays/mercurial.py
diff options
context:
space:
mode:
Diffstat (limited to 'layman/overlays/mercurial.py')
-rw-r--r--layman/overlays/mercurial.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layman/overlays/mercurial.py b/layman/overlays/mercurial.py
index daa686c..3ee068c 100644
--- a/layman/overlays/mercurial.py
+++ b/layman/overlays/mercurial.py
@@ -42,7 +42,7 @@ class MercurialOverlay(Overlay):
def __init__(self, xml, config, ignore = 0, quiet = False):
- Overlay.__init__(self, xml, config, ignore)
+ super(MercurialOverlay, self).__init__(xml, config, ignore)
def add(self, base, quiet = False):
'''Add overlay.'''
@@ -63,5 +63,5 @@ class MercurialOverlay(Overlay):
def supported(self):
'''Overlay type supported?'''
- return Overlay.supported(self, [(self.command(), 'mercurial',
+ return super(MercurialOverlay, self).supported([(self.command(), 'mercurial',
'dev-util/mercurial'),])