aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <proyvind@moondrake.org>2016-06-26 12:35:04 +0200
committerPer Øyvind Karlsen <proyvind@moondrake.org>2016-06-26 12:35:04 +0200
commit0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c (patch)
tree04ab5f65670bfff6a5a45811d1f2669a2fc389a2 /MgaRepo
parent740baf4476c71982670a773e84513cdfe71886dd (diff)
downloadmgarepo-0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c.tar
mgarepo-0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c.tar.gz
mgarepo-0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c.tar.bz2
mgarepo-0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c.tar.xz
mgarepo-0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c.zip
fix SyntaxError by passing keyword argument before **kwargs
Diffstat (limited to 'MgaRepo')
-rw-r--r--MgaRepo/VCS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/VCS.py b/MgaRepo/VCS.py
index 2ec89d0..2ed519b 100644
--- a/MgaRepo/VCS.py
+++ b/MgaRepo/VCS.py
@@ -349,7 +349,7 @@ class VCS(object):
raise Error("invalid limit number provided")
cmd.extend(("--limit", str(limit)))
- status, output = self._execVcs(*cmd, **kwargs, xml=True)
+ status, output = self._execVcs(*cmd, xml=True, **kwargs)
if status != 0:
return None