summaryrefslogtreecommitdiffstats
path: root/layman/overlays/cvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'layman/overlays/cvs.py')
-rw-r--r--layman/overlays/cvs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layman/overlays/cvs.py b/layman/overlays/cvs.py
index 5c8d376..1e28cfc 100644
--- a/layman/overlays/cvs.py
+++ b/layman/overlays/cvs.py
@@ -43,7 +43,7 @@ class CvsOverlay(Overlay):
def __init__(self, xml, config, ignore = 0, quiet = False):
- Overlay.__init__(self, xml, config, ignore, quiet)
+ super(CvsOverlay, self).__init__(xml, config, ignore, quiet)
_subpath = xml.find('subpath')
if _subpath != None:
@@ -100,5 +100,5 @@ class CvsOverlay(Overlay):
def supported(self):
'''Overlay type supported?'''
- return Overlay.supported(self, [(self.command(), 'cvs',
+ return super(CvsOverlay, self).supported([(self.command(), 'cvs',
'dev-util/cvs'),])