Skip to content

Commit

Permalink
Fix inverted if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed Apr 4, 2017
1 parent d80c428 commit 03001c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/CIME/XML/env_mach_specific.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def get_mpirun(self, case, attribs, check_members=None, job="case.run", exe_only
the_match = best_match if best_match is not None else default_match

# Now that we know the best match, compute the arguments
if exe_only:
if not exe_only:
arg_node = self.get_optional_node("arguments", root=the_match)
if arg_node is not None:
arg_nodes = self.get_nodes("arg", root=arg_node)
Expand Down

0 comments on commit 03001c8

Please sign in to comment.