Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fsl_sub_plugin_slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fsl_sub_plugin_slurm
Compare revisions
a2e819145b9629550f56672d76661b5b6ea2281c to e76375b1a6a5c8edc073d8c9b2ed7b7eca434494
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
fsl/fsl_sub_plugin_slurm
Select target project
No results found
e76375b1a6a5c8edc073d8c9b2ed7b7eca434494
Select Git revision
Swap
Target
fsl/fsl_sub_plugin_slurm
Select target project
fsl/fsl_sub_plugin_slurm
1 result
a2e819145b9629550f56672d76661b5b6ea2281c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
BF: Test for being an instance of list not alias
· 0f9aa7ed
Matthew Webster
authored
7 months ago
0f9aa7ed
Merge branch 'bf/extra' into 'master'
· e76375b1
Duncan Mortimer
authored
7 months ago
BF: Test for being an instance of list not alias See merge request
!8
e76375b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl_sub_plugin_slurm/__init__.py
+1
-1
1 addition, 1 deletion
fsl_sub_plugin_slurm/__init__.py
with
1 addition
and
1 deletion
fsl_sub_plugin_slurm/__init__.py
View file @
e76375b1
...
@@ -386,7 +386,7 @@ def submit(
...
@@ -386,7 +386,7 @@ def submit(
raise
BadSubmission
(
raise
BadSubmission
(
"
Internal error: command argument must be a list
"
"
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
(
raise
BadSubmission
(
"
Internal error: extra_args should be a list
"
"
Internal error: extra_args should be a list
"
)
)
...
...
This diff is collapsed.
Click to expand it.