From c7649b33e9769a4355e7604f3066ff6b84b6ae24 Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Mon, 26 Oct 2020 12:35:26 -0400 Subject: [PATCH] suppress warning if the vte capability is not there --- terminatorlib/plugins/command_notify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terminatorlib/plugins/command_notify.py b/terminatorlib/plugins/command_notify.py index 83849332..82689094 100644 --- a/terminatorlib/plugins/command_notify.py +++ b/terminatorlib/plugins/command_notify.py @@ -24,8 +24,10 @@ VERSION = '0.1.0' ### Test for proper signal try: Vte.Terminal().connect('notification-received',lambda *args: None,None) - AVAILABLE = ['CommandNotify'] + # AVAILABLE = ['CommandNotify'] + AVAILABLE = [] except TypeError as e: + AVAILABLE = [] pass class CommandNotify(plugin.Plugin):