Commit a19ab7aa authored by Theophile Terraz's avatar Theophile Terraz
Browse files

debug rubar

No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
...@@ -99,7 +99,10 @@ class CommandLineSolver(AbstractSolver): ...@@ -99,7 +99,10 @@ class CommandLineSolver(AbstractSolver):
params = study.river.get_params(self.type) params = study.river.get_params(self.type)
args = params.get_by_key("all_command_line_arguments") args = params.get_by_key("all_command_line_arguments")
return args.split(" ") if args is None:
return []
else:
return args.split(" ")
def input_param(self): def input_param(self):
"""Return input command line parameter(s) """Return input command line parameter(s)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment