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 174de18..3aab7d1 100644
--- a/layman/overlays/git.py
+++ b/layman/overlays/git.py
@@ -25,7 +25,7 @@ __version__ = "$Id: git.py 146 2006-05-27 09:52:36Z wrobel $"
#-------------------------------------------------------------------------------
from layman.utils import path
-from layman.overlays.source import OverlaySource
+from layman.overlays.source import OverlaySource, require_supported
#===============================================================================
#
@@ -76,5 +76,5 @@ class GitOverlay(OverlaySource):
def supported(self):
'''Overlay type supported?'''
- return super(GitOverlay, self).supported([(self.command(), 'git',
+ return require_supported([(self.command(), 'git',
'dev-util/git'),])