Skip to content

Commit 2009c18

Browse files
committed
fix #38
1 parent b0f7fb9 commit 2009c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tornado_mysql/cursors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def callproc(self, procname, args=()):
230230
for i in range_type(len(args))]))
231231
yield self._query(q)
232232
self._executed = q
233-
yield gen.Return(args)
233+
raise gen.Return(args)
234234

235235
def fetchone(self):
236236
''' Fetch the next row '''

0 commit comments

Comments
 (0)