From 0cec5df0c565c301b5a500bfcab3c8860eff9033 Mon Sep 17 00:00:00 2001
From: Stephan Erb <steve-e@h3c.de>
Date: Thu, 29 Nov 2007 21:06:39 +0000
Subject: [PATCH] Remove duplicated function. Fix potential tb on usage of
 non-existing var.

---
 src/config.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/config.py b/src/config.py
index 4817bec3cb..20540364e6 100644
--- a/src/config.py
+++ b/src/config.py
@@ -1292,10 +1292,6 @@ class AccountsWindow:
 	def on_close_button_clicked(self, widget):
 		self.window.destroy()
 
-	def on_accounts_window_destroy(self, widget):
-		if gajim.interface.instances.has_key('accounts'):
-			del gajim.interface.instances['accounts']
-
 	def __init__(self):
 		self.xml = gtkgui_helpers.get_glade('accounts_window.glade')
 		self.window = self.xml.get_widget('accounts_window')
@@ -1741,7 +1737,7 @@ class AccountsWindow:
 
 			# ServiceCache object keep old property account
 			if hasattr(gajim.connections[old_name], 'services_cache'):
-				gajim.connections[self.account].services_cache.account = new_name
+				gajim.connections[old_name].services_cache.account = new_name
 			del gajim.interface.instances[old_name]
 			del gajim.interface.minimized_controls[old_name]
 			del gajim.nicks[old_name]
-- 
GitLab