summaryrefslogtreecommitdiffstats
path: root/layman/overlays/rsync.py
diff options
context:
space:
mode:
Diffstat (limited to 'layman/overlays/rsync.py')
-rw-r--r--layman/overlays/rsync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layman/overlays/rsync.py b/layman/overlays/rsync.py
index 9106403..495d2ba 100644
--- a/layman/overlays/rsync.py
+++ b/layman/overlays/rsync.py
@@ -25,7 +25,7 @@ __version__ = "$Id: rsync.py 236 2006-09-05 20:39:37Z wrobel $"
#-------------------------------------------------------------------------------
from layman.utils import path
-from layman.overlays.source import OverlaySource
+from layman.overlays.source import OverlaySource, require_supported
#===============================================================================
#
@@ -73,5 +73,5 @@ class RsyncOverlay(OverlaySource):
def supported(self):
'''Overlay type supported?'''
- return super(RsyncOverlay, self).supported([(self.command(), 'rsync',
+ return require_supported([(self.command(), 'rsync',
'net-misc/rsync'),])