Skip to content

Commit

Permalink
log messages are lstripped
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed May 23, 2023
1 parent 5b8bb28 commit 1ef3e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/tools/publisher/widgets/report_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ def __init__(self, log, parent):
type_flag, level_n = self._get_log_info(log)
icon_label = LogIconFrame(
self, log["type"], level_n, log.get("is_validation_error"))
message_label = QtWidgets.QLabel(log["msg"], self)
message_label = QtWidgets.QLabel(log["msg"].lstrip(), self)
message_label.setObjectName("PublishLogMessage")
message_label.setTextInteractionFlags(
QtCore.Qt.TextBrowserInteraction)
Expand Down

0 comments on commit 1ef3e05

Please sign in to comment.