From 28a54b6b866e04d2ef5fc936d9833a163a518713 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 28 Mar 2006 02:04:32 +0000 Subject: [PATCH] fixed "DISTINCT" spelling --- lib/sqlalchemy/sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 6116a44e15..86c538f277 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -491,7 +491,7 @@ class CompareMixin(object): def label(self, name): return Label(name, self) def distinct(self): - return CompoundClause(None,"DISTNCT", self) + return CompoundClause(None,"DISTINCT", self) def op(self, operator): return lambda other: self._compare(operator, other) # and here come the math operators: -- 2.47.2