Remove another comprehension not working as expected in kill()

This commit is contained in:
Ray 2009-03-30 11:59:07 -04:00
parent 5505ebdec2
commit f5d7764571

View File

@ -197,7 +197,8 @@ class Hud:
s.window.destroy()
self.stat_windows = {}
# also kill any aux windows
(aux.destroy() for aux in self.aux_windows)
for aux in self.aux_windows:
aux.destroy()
self.aux_windows = []
def reposition_windows(self, *args):