Mercurial > parpg-source
diff components/containable.py @ 97:f94d4577ca5e
saveable_fields property of components is now a List.
author | KarstenBock@gmx.net |
---|---|
date | Tue, 27 Sep 2011 16:27:36 +0200 |
parents | 8363261b658e |
children |
line wrap: on
line diff
--- a/components/containable.py Tue Sep 27 16:05:07 2011 +0200 +++ b/components/containable.py Tue Sep 27 16:27:36 2011 +0200 @@ -24,6 +24,6 @@ @property def saveable_fields(self): - fields = deepcopy(self.fields) - del fields["container"] + fields = self.fields.keys() + fields.remove("container") return fields \ No newline at end of file