diff options
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r-- | lib/sqlalchemy/sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 6116a44e1..86c538f27 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: |