Skip to content

Commit 9b1efdf

Browse files
committed
Merge branch '2.2'
2 parents a034697 + 2b1ae78 commit 9b1efdf

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

docs/News.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ SQLObject 1.6.7
245245

246246
* Document MSSQL server versions.
247247

248+
* Minor fix in HashCol.
249+
248250
* Speedup SQLite connections in tests.
249251

250252
SQLObject 1.6.6

sqlobject/include/hashcol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(self, **kw):
9191
else:
9292
self.hashMethod = kw['hashMethod']
9393
del kw['hashMethod']
94-
super(sqlobject.col.SOStringCol, self).__init__(**kw)
94+
super(SOHashCol, self).__init__(**kw)
9595

9696
def createValidators(self):
9797
return [HashValidator(name=self.name, hashMethod=self.hashMethod)] + \

0 commit comments

Comments
 (0)