another object.__init__() call with args....might need to build py2.6 to test this more completely....

This commit is contained in:
Mike Bayer
2007-05-26 20:55:26 +00:00
parent 6a4a383d44
commit f4d59ebce6
+1 -1
View 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 = {}