Skip to content

Commit

Permalink
display task_id in download log error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerflex committed Oct 28, 2024
1 parent 2c9ae23 commit 1e7a5f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidy3d/web/api/webapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def get_status(task_id) -> str:
return "success"
if status == "error":
raise WebError(
f"Error running task {task_id}! Use 'web.download_log(task_id)' to "
f"Error running task {task_id}! Use 'web.download_log('{task_id}')' to "
"download and examine the solver log, and/or contact customer support for help."
)
return status
Expand Down

0 comments on commit 1e7a5f8

Please sign in to comment.