Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • fsl/fsl_sub_plugin_slurm
1 result
Show changes
Commits on Source (2)
......@@ -386,7 +386,7 @@ def submit(
raise BadSubmission(
"Internal error: command argument must be a list"
)
if extra_args is not None and extra_args is not list:
if extra_args is not None and not isinstance(extra_args, list):
raise BadSubmission(
"Internal error: extra_args should be a list"
)
......