]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
another object.__init__() call with args....might need to build py2.6 to test this...
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 May 2007 20:55:26 +0000 (20:55 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 May 2007 20:55:26 +0000 (20:55 +0000)
lib/sqlalchemy/sql.py

index ec338820d2ea81ae5e71d5118654c1494e017cf6..fb32c0f07e85d446222e63f657fd7d58cd233449 100644 (file)
@@ -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 = {}