]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo fix noticed by R Munn
authorJonathan Ellis <jbellis@gmail.com>
Mon, 31 Jul 2006 17:45:24 +0000 (17:45 +0000)
committerJonathan Ellis <jbellis@gmail.com>
Mon, 31 Jul 2006 17:45:24 +0000 (17:45 +0000)
lib/sqlalchemy/orm/query.py

index f1d4d4ab2f118d6fc12b4e159212402d2c2785af..3b04575c12aa0fd6436d2fc218d1abb9ffc6e98b 100644 (file)
@@ -221,7 +221,7 @@ class Query(object):
         if ret is not mapper.EXT_PASS:
             return ret
         try:
-            s = arg._selectable_()
+            s = arg._selectable()
         except AttributeError:
             return self.select_whereclause(whereclause=arg, **kwargs)
         else: