From 4952d0f45d2d5a752335bbd2ebfc79024ebc2de6 Mon Sep 17 00:00:00 2001
From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
Date: Tue, 11 Feb 2025 17:48:21 +0100
Subject: [PATCH] use
for new line character
---
client/ayon_core/tools/publisher/widgets/report_page.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/client/ayon_core/tools/publisher/widgets/report_page.py b/client/ayon_core/tools/publisher/widgets/report_page.py
index 1e46e7e52c..9abcad09ef 100644
--- a/client/ayon_core/tools/publisher/widgets/report_page.py
+++ b/client/ayon_core/tools/publisher/widgets/report_page.py
@@ -1693,6 +1693,9 @@ class PublishFailWidget(QtWidgets.QWidget):
description = error_item.description or description
detail = error_item.detail or detail
+ description = description.replace("\n", "
")
+ detail = detail.replace("\n", "
")
+
self._error_details_widget.set_detail(detail)
if commonmark: