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.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/layman/overlays/mercurial.py b/layman/overlays/mercurial.py
index 5247e78..0d8250e 100644
--- a/layman/overlays/mercurial.py
+++ b/layman/overlays/mercurial.py
@@ -41,13 +41,13 @@ class MercurialOverlay(OverlaySource):
type_key = 'mercurial'
def __init__(self, parent, config,
- _location, ignore = 0, quiet = False):
+ _location, ignore = 0):
super(MercurialOverlay, self).__init__(parent,
- config, _location, ignore, quiet)
+ config, _location, ignore)
self.subpath = None
- def add(self, base, quiet = False):
+ def add(self, base):
'''Add overlay.'''
if not self.supported():
@@ -66,7 +66,7 @@ class MercurialOverlay(OverlaySource):
self.run_command(self.command(), args, cmd=self.type),
cwd=target)
- def sync(self, base, quiet = False):
+ def sync(self, base):
'''Sync overlay.'''
if not self.supported():