diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-28 02:04:32 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-28 02:04:32 +0000 |
commit | 28a54b6b866e04d2ef5fc936d9833a163a518713 (patch) | |
tree | 602390f725131477980e52602755f92abe626f37 /lib/sqlalchemy/sql.py | |
parent | b3db76d449966de741201e47b58062d2ac8d1dc8 (diff) | |
download | sqlalchemy-28a54b6b866e04d2ef5fc936d9833a163a518713.tar.gz |
fixed "DISTINCT" spelling
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: |