summaryrefslogtreecommitdiff
path: root/beinc_weechat.py
diff options
context:
space:
mode:
authorSimeon Simeonov2015-04-17 18:16:46 +0200
committerSimeon Simeonov2015-04-17 18:16:46 +0200
commit6661127128907a4147ca0e9fe4b70415dd424ad5 (patch)
treefa22f1ea05be1733aa0fb5ac5f98f7dd47bbb334 /beinc_weechat.py
parent0e04cd072018eaa121ff75f20f8f9a5a5d7b0919 (diff)
Fix status display for targets
Diffstat (limited to 'beinc_weechat.py')
-rw-r--r--beinc_weechat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/beinc_weechat.py b/beinc_weechat.py
index 73261dd..b497acb 100644
--- a/beinc_weechat.py
+++ b/beinc_weechat.py
@@ -239,7 +239,7 @@ class WeechatTarget(object):
239 self.__priv_messages_policy, 239 self.__priv_messages_policy,
240 self.__notifications_policy, 240 self.__notifications_policy,
241 'yes' if self.__enabled else 'no', 241 'yes' if self.__enabled else 'no',
242 'yes' if bool(self.__connection) else 'no', 242 'no' if self.__connection is None else 'yes',
243 'yes' if self.__debug else 'no')) 243 'yes' if self.__debug else 'no'))
244 244
245 def send_private_message_notification(self, values): 245 def send_private_message_notification(self, values):