Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > 0b5557f6be7349be5d3891ffedd05215 > files > 2

python-sqlamp-0.5.2-2.fc16.src.rpm

diff -r 131308c390ec -r 2b546fe97248 CHANGES
--- a/CHANGES	Sun Sep 19 18:22:03 2010 +0400
+++ b/CHANGES	Sun Jan 23 21:39:40 2011 +0300
@@ -1,3 +1,8 @@
+0.5.3: *not released yet*
+-------------------------
+- Fixed support of SQLAlchemy 0.6.6 in :meth:`MPOptions.order_by_clause`.
+  Patch by Josip Delic.
+
 0.5.2: released 2010-09-19
 --------------------------
 - SQLAlchemy of versions 0.6.x is now supported as well as 0.5.x.
diff -r 131308c390ec -r 2b546fe97248 sqlamp/__init__.py
--- a/sqlamp/__init__.py	Sun Sep 19 18:22:03 2010 +0400
+++ b/sqlamp/__init__.py	Sun Jan 23 21:39:40 2011 +0300
@@ -206,7 +206,7 @@
         return sqlalchemy.sql.expression.ClauseList(
             self.tree_id_field,
             self.path_field
-        )
+        ).compile()
 
 
 class _InsertionsParamsSelector(object):