Remove asterisk on destructured args
Otherwise we would create a tuple containing a tuple of arguments and an empty tuple.
This commit is contained in:
parent
c91bbe787b
commit
fa73c52fe2
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ class SystemRepository():
|
||||||
self.stdout = [""]
|
self.stdout = [""]
|
||||||
self.stderr = [""]
|
self.stderr = [""]
|
||||||
|
|
||||||
def run(self, *args):
|
def run(self, args):
|
||||||
stream = sub.Popen(args,
|
stream = sub.Popen(args,
|
||||||
stdout=sub.PIPE,
|
stdout=sub.PIPE,
|
||||||
stderr=sub.PIPE,
|
stderr=sub.PIPE,
|
||||||
|
|
Loading…
Reference in a new issue