From 2c362fb35fa73c35aa017402ded1619291e01d2c Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:48:31 +0200 Subject: [PATCH] removed detail from default behavior --- client/ayon_core/tools/publisher/models/publish.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/ayon_core/tools/publisher/models/publish.py b/client/ayon_core/tools/publisher/models/publish.py index 4afcc5772d..020436a466 100644 --- a/client/ayon_core/tools/publisher/models/publish.py +++ b/client/ayon_core/tools/publisher/models/publish.py @@ -53,10 +53,6 @@ class PublishErrorInfo: detail=exc.detail, ) title = "This is not your fault" - detail = ( - "Please report the error to your pipeline support" - " using one of the options below." - ) if isinstance(exc, KnownPublishError): msg = str(exc) else: @@ -64,7 +60,7 @@ class PublishErrorInfo: "Something went wrong. Send report" " to your supervisor or Ynput team." ) - return cls(msg, title, detail) + return cls(msg, title) class PublishReportMaker: