# HG changeset patch # User KarstenBock@gmx.net # Date 1316614266 -7200 # Node ID 0ea341301461fbfc3d7c8a9ade885b5e894579bf # Parent 0f659c7675f6664b9af77a56e0c3235791463676 Fixed syntax error in container.py. diff -r 0f659c7675f6 -r 0ea341301461 src/parpg/components/container.py --- a/src/parpg/components/container.py Wed Sep 21 16:10:14 2011 +0200 +++ b/src/parpg/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