Mercurial > parpg-source
changeset 66:58d58bf2e567
Fixed syntax error in container.py.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 16:11:06 +0200 |
parents | e856b604b650 |
children | 1a450a764817 |
files | components/container.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/components/container.py Wed Sep 21 16:10:14 2011 +0200 +++ b/components/container.py Wed Sep 21 16:11:06 2011 +0200 @@ -71,7 +71,7 @@ return container.children[slot_or_type] else: for item in container.children: - if child and if child.type == slot_or_type: + if child and child.type == slot_or_type: return child return None @@ -86,7 +86,7 @@ item.slot = -1 else: for item in container.children: - if child and if child.type == slot_or_type: + if child and child.type == slot_or_type: container.children[child.slot] = None child.container = None child.slot = -1