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