Skip to content

Commit b7be10b

Browse files
author
James William Pye
committed
Fix my breakage, resolve is referenced by the module now.
Report and patch by Elvis Pranskevichus.
1 parent 8a33049 commit b7be10b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

postgresql/driver/pq3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def identify(self, **identity_mappings):
296296
"""
297297
# get them ordered; we process separately, then recombine.
298298
id = list(identity_mappings.items())
299-
ios = [resolve(x[0]) for x in id]
299+
ios = [pg_types_io.resolve(x[0]) for x in id]
300300
oids = list(self.database.sys.regtypes([x[1] for x in id]))
301301

302302
self._cache.update([

0 commit comments

Comments
 (0)