diff options
Diffstat (limited to 'MgaRepo/VCS.py')
-rw-r--r-- | MgaRepo/VCS.py | 2 |
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 |