aboutsummaryrefslogtreecommitdiff
path: root/lava_dispatcher/shell.py
diff options
context:
space:
mode:
authorRĂ©mi Duraffort <remi.duraffort@linaro.org>2018-06-19 15:26:00 +0200
committerNeil Williams <neil.williams@linaro.org>2018-06-20 12:40:41 +0000
commita1278b6df7b19018c7f81336e1b553050765e2d8 (patch)
tree5ee996147ebdf91679891a21e73f29b403bbb491 /lava_dispatcher/shell.py
parentd4df5f3d69d89427229b76147a6e095e6c526835 (diff)
Remove "args" from Action.run()
This argument is not used anymore. Change-Id: I9cc98ed14003e79110c820149570cc1248549535
Diffstat (limited to 'lava_dispatcher/shell.py')
-rw-r--r--lava_dispatcher/shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lava_dispatcher/shell.py b/lava_dispatcher/shell.py
index 701e0c705..5a3329d80 100644
--- a/lava_dispatcher/shell.py
+++ b/lava_dispatcher/shell.py
@@ -320,8 +320,8 @@ class ExpectShellSession(Action):
if 'prompts' not in self.parameters:
self.errors = "Unable to identify test image prompts from parameters."
- def run(self, connection, max_end_time, args=None):
- connection = super().run(connection, max_end_time, args)
+ def run(self, connection, max_end_time):
+ connection = super().run(connection, max_end_time)
if not connection:
raise JobError("No connection available.")
if not connection.prompt_str: