From 667b82319fe976cdca49921c81a2f618a87f796d Mon Sep 17 00:00:00 2001 From: Saptak S Date: Mon, 2 May 2022 12:28:50 +0530 Subject: [PATCH] Address reviews --- desktop/onionshare/connection_tab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/onionshare/connection_tab.py b/desktop/onionshare/connection_tab.py index 916a56b6..0ae2d092 100644 --- a/desktop/onionshare/connection_tab.py +++ b/desktop/onionshare/connection_tab.py @@ -328,9 +328,9 @@ class AutoConnectTab(QtWidgets.QWidget): # If there is a message, update the text of the bridge widget if msg: - self.use_bridge_widget.connection_error_message.setText(f"{msg}") + self.use_bridge_widget.connection_error_message.setText(msg) - # If we're on first launch, check if wasCancelled + # If we're on first launch, check if wasCanceled # If cancelled, stay in first launch widget and show buttons # Else, switch to use bridge if self.first_launch_widget.isVisible():