Skip to content

Commit

Permalink
Fix method call.
Browse files Browse the repository at this point in the history
  • Loading branch information
doerwalter committed Jan 10, 2022
1 parent ff56996 commit e65fabc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ll/orasql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def object_named(self, name, owner=None):

# For backwards compatibility
def getobject(self, name, owner=None):
return object_named(self, name, owner=None)
return self.object_named(self, name, owner=None)


def connect(*args, **kwargs):
Expand Down

0 comments on commit e65fabc

Please sign in to comment.