summaryrefslogtreecommitdiffstats
path: root/layman/overlays/mercurial.py
diff options
context:
space:
mode:
authorBrian Dolbec <brian.dolbec@gmail.com>2011-02-23 21:58:49 -0800
committerBrian Dolbec <brian.dolbec@gmail.com>2011-02-23 22:49:58 -0800
commitba5f0cd5c948bb7a65ab21008c940caf0fbe38e7 (patch)
tree461387c10f36e9b6423e38a2b34c2ae31df882d2 /layman/overlays/mercurial.py
parente4cbd7af207a2f21df967a080af5bb61c6c782d7 (diff)
downloadlayman-ba5f0cd5c948bb7a65ab21008c940caf0fbe38e7.tar.gz
layman-ba5f0cd5c948bb7a65ab21008c940caf0fbe38e7.tar.bz2
layman-ba5f0cd5c948bb7a65ab21008c940caf0fbe38e7.zip
removal of xml from the vcs class parameters.
Diffstat (limited to 'layman/overlays/mercurial.py')
-rw-r--r--layman/overlays/mercurial.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/layman/overlays/mercurial.py b/layman/overlays/mercurial.py
index df4f789..1d0cb92 100644
--- a/layman/overlays/mercurial.py
+++ b/layman/overlays/mercurial.py
@@ -40,9 +40,11 @@ class MercurialOverlay(OverlaySource):
type = 'Mercurial'
type_key = 'mercurial'
- def __init__(self, parent, xml, config, _location, ignore = 0, quiet = False):
+ def __init__(self, parent, config,
+ _location, ignore = 0, quiet = False):
- super(MercurialOverlay, self).__init__(parent, xml, config, _location, ignore, quiet)
+ super(MercurialOverlay, self).__init__(parent,
+ config, _location, ignore, quiet)
def add(self, base, quiet = False):
'''Add overlay.'''