Skip to content

Commit 384fafc

Browse files
committed
Fix attribute name
1 parent 82a56bb commit 384fafc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psqlextra/backend/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, *args, **kwargs):
3131
#
3232
# This can lead to broken functionality. We fix this automatically.
3333

34-
if not isinstance(self.ops, self.introspection_class):
34+
if not isinstance(self.introspection, self.introspection_class):
3535
self.introspection = self.introspection_class(self)
3636

3737
if not isinstance(self.ops, self.ops_class):

0 commit comments

Comments
 (0)