mirror of https://gitlab.com/pamhyr/pamhyr2
debug rubar
parent
29d4c7c146
commit
a19ab7aa79
|
|
@ -99,7 +99,10 @@ class CommandLineSolver(AbstractSolver):
|
|||
params = study.river.get_params(self.type)
|
||||
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):
|
||||
"""Return input command line parameter(s)
|
||||
|
|
|
|||
Loading…
Reference in New Issue