Skip to content

Commit

Permalink
Correct whitespace in InvalidResourceSpecification message
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Oct 13, 2024
1 parent 8356233 commit 51c297f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsl/executors/high_throughput/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ def validate_resource_spec(self, resource_specification: dict):
if resource_specification:
raise InvalidResourceSpecification(
set(resource_specification.keys()),
("HTEX does not support the supplied resource_specifications."
("HTEX does not support the supplied resource_specifications. "
"For MPI applications consider using the MPIExecutor. "
"For specifications for core count/memory/walltime, consider using WorkQueueExecutor. ")
"For specifications for core count/memory/walltime, consider using WorkQueueExecutor.")
)
return

Expand Down

0 comments on commit 51c297f

Please sign in to comment.