mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00
Add () to str cat to fix % fmt
This commit is contained in:
parent
0316580e92
commit
a3278f7637
1 changed files with 2 additions and 2 deletions
|
@ -120,8 +120,8 @@ class UIService(ui_pb2_grpc.UIServicer, QtWidgets.QGraphicsObject):
|
|||
if self._version_warning_shown == False:
|
||||
self._msg.setIcon(QtWidgets.QMessageBox.Warning)
|
||||
self._msg.setWindowTitle("OpenSnitch version mismatch!")
|
||||
self._msg.setText("You are running version <b>%s</b> of the daemon, while the UI is at version " + \
|
||||
"<b>%s</b>, they might not be fully compatible." % (daemon_ver, ui_ver))
|
||||
self._msg.setText(("You are running version <b>%s</b> of the daemon, while the UI is at version " + \
|
||||
"<b>%s</b>, they might not be fully compatible.") % (daemon_ver, ui_ver))
|
||||
self._msg.setStandardButtons(QtWidgets.QMessageBox.Ok)
|
||||
self._msg.show()
|
||||
self._version_warning_shown = True
|
||||
|
|
Loading…
Add table
Reference in a new issue