diff --git a/VERSION b/VERSION index c4320b04..daf05c16 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.1 (2012-08-29 15:13:07) rc4 +Version 2.00.1 (2012-08-29 15:42:48) rc4 diff --git a/gluon/template.py b/gluon/template.py index a8481338..3d6442c0 100644 --- a/gluon/template.py +++ b/gluon/template.py @@ -177,7 +177,8 @@ class Content(BlockNode): if isinstance(other, (list, tuple)): # Must reverse so the order stays the same. other.reverse() - (self._insert(item, index) for item in other) + for item in other: + self._insert(item, index) else: self._insert(other, index)