Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyhs2/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def fetchone(self):

# return the first record
self._cursorLock.release()
return self._currentBlock[0]
return [val.decode('utf-8') if isinstance(val, str) else val for val in self._currentBlock[0]]

def fetchmany(self,size=-1):
""" return a sequential set of records. This is guaranteed by locking,
Expand Down