From: Mike Bayer Date: Sat, 26 May 2007 20:55:26 +0000 (+0000) Subject: another object.__init__() call with args....might need to build py2.6 to test this... X-Git-Tag: rel_0_3_8~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4d59ebce6e57ea332c8cc143be655f5f6808eef;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git another object.__init__() call with args....might need to build py2.6 to test this more completely.... --- diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index ec338820d2..fb32c0f07e 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -791,7 +791,7 @@ class ClauseParameters(object): """ def __init__(self, dialect, positional=None): - super(ClauseParameters, self).__init__(self) + super(ClauseParameters, self).__init__() self.dialect = dialect self.binds = {} self.binds_to_names = {}