aboutsummaryrefslogtreecommitdiffstats
path: root/examples/network/fortuneserver
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/fortuneserver')
-rw-r--r--examples/network/fortuneserver/fortuneserver.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/network/fortuneserver/fortuneserver.py b/examples/network/fortuneserver/fortuneserver.py
index 7b8f05a32..e3087f1c1 100644
--- a/examples/network/fortuneserver/fortuneserver.py
+++ b/examples/network/fortuneserver/fortuneserver.py
@@ -52,18 +52,20 @@ class Server(QtWidgets.QDialog):
super(Server, self).__init__(parent)
statusLabel = QtWidgets.QLabel()
+ statusLabel.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction)
quitButton = QtWidgets.QPushButton("Quit")
quitButton.setAutoDefault(False)
self.tcpServer = QtNetwork.QTcpServer(self)
if not self.tcpServer.listen():
+ reason = self.tcpServer.errorString()
QtWidgets.QMessageBox.critical(self, "Fortune Server",
- "Unable to start the server: %s." % self.tcpServer.errorString())
+ f"Unable to start the server: {reason}.")
self.close()
return
-
- statusLabel.setText("The server is running on port %d.\nRun the "
- "Fortune Client example now." % self.tcpServer.serverPort())
+ port = self.tcpServer.serverPort()
+ statusLabel.setText(f"The server is running on port {port}.\nRun the "
+ "Fortune Client example now.")
self.fortunes = (
"You've been leading a dog's life. Stay off the furniture.",