summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-05-26 17:18:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-05-26 17:18:04 -0400
commite2b8c893ca98bb0141405a7d7d40c4024d5bdf41 (patch)
tree1579f2a0932ab73b75227e4ffd06c4390148448a /lib/sqlalchemy/sql/expression.py
parentbfc948e44b15930e566d4afd4340570099af309b (diff)
downloadsqlalchemy-e2b8c893ca98bb0141405a7d7d40c4024d5bdf41.tar.gz
fix this test
Diffstat (limited to 'lib/sqlalchemy/sql/expression.py')
-rw-r--r--lib/sqlalchemy/sql/expression.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py
index 3644cabc3..3f9aef2b7 100644
--- a/lib/sqlalchemy/sql/expression.py
+++ b/lib/sqlalchemy/sql/expression.py
@@ -2485,7 +2485,7 @@ class ColumnCollection(util.OrderedProperties):
existing = self[key]
if not existing.shares_lineage(value):
util.warn('Column %r on table %r being replaced by '
- '%r , which has the same key. Consider '
+ '%r, which has the same key. Consider '
'use_labels for select() statements.' % (key,
getattr(existing, 'table', None), value))
self._all_cols.remove(existing)