From 5e56e9033fbab78a17549da421bb8e009b762b02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20I=C3=B1iguez=20Goia?= Date: Sat, 19 Jun 2021 01:00:33 +0200 Subject: [PATCH] ui, process monitor dialog: fixed exception Fixed exception when stopping the monitor fails and an error is returned. --- ui/opensnitch/dialogs/processdetails.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/opensnitch/dialogs/processdetails.py b/ui/opensnitch/dialogs/processdetails.py index 0368dd5336..b7c5848d22 100644 --- a/ui/opensnitch/dialogs/processdetails.py +++ b/ui/opensnitch/dialogs/processdetails.py @@ -112,7 +112,7 @@ def _cb_notification_callback(self, reply): elif noti.type == ui_pb2.STOP_MONITOR_PROCESS: if reply.data != "": - self.show_message(QtCore.QCoreApplication.translate("proc_details", "Error stopping monitoring process:

") + reply.data) + self._show_message(QtCore.QCoreApplication.translate("proc_details", "Error stopping monitoring process:

") + reply.data) self._set_button_running(False) self._delete_notification(reply.id)