Skip to content

Commit 5810fbc

Browse files
committed
Fix faulty getattr() invocation
1 parent 7495dae commit 5810fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/itoolkit/transport/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ def call(self, tk):
6161

6262
# call the procedure using the correct method for this
6363
# cursor type, which we ascertained in the constructor
64-
getattr(cursor, self.func)(cursor, self.query, parms)
64+
getattr(cursor, self.func)(self.query, parms)
6565

6666
return "".join(row[0] for row in cursor).rstrip('\0')

0 commit comments

Comments
 (0)