From: Mike Bayer Date: Tue, 28 Mar 2006 02:04:32 +0000 (+0000) Subject: fixed "DISTINCT" spelling X-Git-Tag: rel_0_1_6~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28a54b6b866e04d2ef5fc936d9833a163a518713;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed "DISTINCT" spelling --- 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: