Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpcdf
obs
osc-plugins
Commits
1a662193
Commit
1a662193
authored
Oct 25, 2019
by
Lorenz Huedepohl
Browse files
Fix wrong handling of attribute value 'impi'
parent
d9ab31a9
Pipeline
#67013
passed with stage
in 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
mpcdf_common.py
View file @
1a662193
...
...
@@ -333,7 +333,7 @@ def mpcdf_enable_repositories(api_url, project, package, verbose=False, filter_r
def
actual_mpis
():
for
mpi
in
(
m
for
m
in
mpis
if
m
in
all_mpis
+
[
"default_mpi"
,
"impi"
]):
if
mpi
==
"impi"
:
for
impi
in
[
mpi
for
mpi
in
mpis
if
mpi
.
startswith
(
"impi"
)]:
for
impi
in
[
mpi
for
mpi
in
all_
mpis
if
mpi
.
startswith
(
"impi"
)]:
yield
impi
elif
mpi
==
"default_mpi"
:
for
default_mpi
in
default_mpis
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment