diff --git a/system_repository.py b/system_repository.py index 31c9f78..914276f 100644 --- a/system_repository.py +++ b/system_repository.py @@ -6,7 +6,7 @@ class SystemRepository(): self.stdout = [""] self.stderr = [""] - def run(self, *args): + def run(self, args): stream = sub.Popen(args, stdout=sub.PIPE, stderr=sub.PIPE,