simplified Config.get_aux_windows()

This commit is contained in:
fpdb-mme 2009-11-04 23:58:48 +01:00
parent 5c656625fd
commit 7e8ed08a28

View File

@ -848,10 +848,7 @@ class Config:
def get_aux_windows(self):
"""Gets the list of mucked window formats in the configuration."""
mw = []
for w in self.aux_windows.keys():
mw.append(w)
return mw
return self.aux_windows.keys()
def get_aux_parameters(self, name):
"""Gets a dict of mucked window parameters from the named mw."""