Skip to content

Commit 83a2030

Browse files
Remove description of exception handling from exception text (#3747)
An exception should describe the exception, not other associated behaviour. ## Type of change - Update to human readable text: Documentation/error messages/comments Co-authored-by: Kevin Hunter Kesling <[email protected]>
1 parent f8c9cd1 commit 83a2030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsl/executors/high_throughput/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self, interchange_version: str, manager_version: str):
2727
def __str__(self) -> str:
2828
return (
2929
f"Manager version info {self.manager_version} does not match interchange"
30-
f" version info {self.interchange_version}, causing a critical failure"
30+
f" version info {self.interchange_version}"
3131
)
3232

3333

0 commit comments

Comments
 (0)