From 3d10187bd3180ec32ba7f329fc3bcff725d2ef79 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 1 Jan 2007 00:10:37 +0000 Subject: - global "insure"->"ensure" change. in US english "insure" is actually largely interchangeable with "ensure" (so says the dictionary), so I'm not completely illiterate, but its definitely sub-optimal to "ensure" which is non-ambiguous. --- lib/sqlalchemy/ansisql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/ansisql.py') diff --git a/lib/sqlalchemy/ansisql.py b/lib/sqlalchemy/ansisql.py index e470a2101..225188eb3 100644 --- a/lib/sqlalchemy/ansisql.py +++ b/lib/sqlalchemy/ansisql.py @@ -321,7 +321,7 @@ class ANSICompiler(sql.Compiled): # redefine the generated name of the bind param in the case # that we have multiple conflicting bind parameters. while self.binds.setdefault(key, bindparam) is not bindparam: - # insure the name doesn't expand the length of the string + # ensure the name doesn't expand the length of the string # in case we're at the edge of max identifier length tag = "_%d" % count key = bindparam.key[0 : len(bindparam.key) - len(tag)] + tag -- cgit v1.2.1