From d267c9253bdbc16a135e37df7a38d82b1afeaa43 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 3 Jun 2005 21:54:17 +0000 Subject: [PATCH] when a new account is registered, we inform the user --- src/gajim.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gajim.py b/src/gajim.py index 699554fb9..ee2208de8 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -445,6 +445,7 @@ class Interface: def handle_event_acc_ok(self, account, array): #('ACC_OK', account, (name, config)) name = array[0] + dialogs.Information_dialog(_('The account %s has been successfully registered') % name) gajim.config.add_per('accounts', name) for opt in array[1]: gajim.config.set_per('accounts', name, opt, array[1][opt])