Skip to content

Commit 979189f

Browse files
committed
Updated unsupported functions to valid Exception syntax
1 parent 79904e6 commit 979189f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pynuodb/cursor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _reset(self):
9090

9191
def callproc(self, procname, parameters=None):
9292
"""Currently not supported."""
93-
raise NotSupportedError
93+
raise NotSupportedError("Currently unsupported")
9494

9595
def execute(self, operation, parameters=None):
9696
"""Executes an SQL operation.
@@ -190,7 +190,7 @@ def fetchall(self):
190190

191191
def nextset(self):
192192
"""Currently not supported."""
193-
raise NotSupportedError
193+
raise NotSupportedError("Currently unsupported")
194194

195195
def setinputsizes(self, sizes):
196196
"""Currently not supported."""

0 commit comments

Comments
 (0)