From dbaac78ef5d8b688568700f321d0c03f52f4d79e Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 1 Feb 2008 07:56:16 +0000 Subject: [PATCH] the on_yes handler of YesNoDialog don't take any argument. fixes #3712 --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 1561a819a..d422a7001 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -2248,7 +2248,7 @@ class Interface: def handle_event_fingerprint_error(self, account, data): # ('FINGERPRINT_ERROR', account, (fingerprint,)) - def on_yes(widget): + def on_yes(): dialog.destroy() gajim.config.set_per('accounts', account, 'ssl_fingerprint_sha1', data[0])