Merge branch 'feature/OP-4194_Remote-publisher-controller' into feature/OP-4239_Multiselection-in-card-view

This commit is contained in:
Jakub Trllo 2022-10-17 17:22:30 +02:00
commit 8aeb8974ad
2 changed files with 3 additions and 2 deletions

View file

@ -1096,7 +1096,8 @@ class CreateContext:
and creator_class.host_name != self.host_name
):
self.log.info((
"Creator's host name is not supported for current host {}"
"Creator's host name \"{}\""
" is not supported for current host \"{}\""
).format(creator_class.host_name, self.host_name))
continue

View file

@ -287,7 +287,7 @@ class HostToolsHelper:
def show_publisher_tool(self, parent=None, controller=None):
with qt_app_context():
dialog = self.get_publisher_tool(controller, parent)
dialog = self.get_publisher_tool(parent, controller)
dialog.show()
dialog.raise_()