Close all the windows on exit

This commit is contained in:
Denis Fomin 2013-01-03 17:13:19 +04:00
parent ec6b85a75b
commit 371fe86172
1 changed files with 1 additions and 1 deletions

View File

@ -2394,7 +2394,7 @@ class RosterWindow:
"""
Close all the windows in the given dictionary
"""
for w in dic.values():
for w in list(dic.values()):
if isinstance(w, dict):
self.close_all_from_dict(w)
else: