Skip to content

Commit 725e3ec

Browse files
committed
Fixed CLOSESTATEMENT typo
1 parent 0c81c07 commit 725e3ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pynuodb/encodedsession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def close_statement(self, statement):
190190
"""
191191
@type statement Statement
192192
"""
193-
self._putMessageId(protocol.CLOSESTATMENT).putInt(statement.handle)
193+
self._putMessageId(protocol.CLOSESTATEMENT).putInt(statement.handle)
194194
self._exchangeMessages(False)
195195

196196
def create_prepared_statement(self, query):

pynuodb/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
GENCONNECTIONHTML = 12
6161
GETRESULTSET = 13
6262
SEARCH = 14
63-
CLOSESTATMENT = 15
63+
CLOSESTATEMENT = 15
6464
CLEARPARAMETERS = 16
6565
GETPARAMETERCOUNT = 17
6666
EXECUTE = 18

0 commit comments

Comments
 (0)