From 0f0f2cf5387a089f3db0b92e4f279af07b0f7d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=98yvind=20Karlsen?= Date: Sun, 26 Jun 2016 12:35:04 +0200 Subject: fix SyntaxError by passing keyword argument before **kwargs --- MgaRepo/VCS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1