[pod] Bugfix for https://bugs.launchpad.net/appy/+bug/1333352.
This commit is contained in:
parent
f7eaed817e
commit
c676d0b29c
2 changed files with 8 additions and 6 deletions
|
@ -574,7 +574,8 @@ class MemoryBuffer(Buffer):
|
|||
def getElementIndexes(self, expressions=True):
|
||||
res = []
|
||||
for index, elem in self.elements.iteritems():
|
||||
condition = isinstance(elem, Expression)
|
||||
condition = isinstance(elem, Expression) or \
|
||||
isinstance(elem, Attributes)
|
||||
if not expressions:
|
||||
condition = not condition
|
||||
if condition:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue