From: Jason Kirtland Date: Wed, 30 Apr 2008 02:52:14 +0000 (+0000) Subject: - Fix 2.3 regression from 4598 X-Git-Tag: rel_0_5beta1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7f3f997fec841013ebaea749516929bfba9f9c6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - Fix 2.3 regression from 4598 --- diff --git a/test/orm/eager_relations.py b/test/orm/eager_relations.py index a30c425ac5..b7ebc31a45 100644 --- a/test/orm/eager_relations.py +++ b/test/orm/eager_relations.py @@ -1005,7 +1005,7 @@ class SubqueryTest(ORMTest): class User(Base): @property def prop_score(self): - return sum(tag.prop_score for tag in self.tags) + return sum([tag.prop_score for tag in self.tags]) class Tag(Base): @property