Skip to content

Commit

Permalink
Fix for Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotchance committed May 11, 2015
1 parent 2719d36 commit 1fc1590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tesseract/engine/statements/statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __lua_error(self, e):
return Protocol.failed_response(message)

def __retrieve_records(self, manager, redis, run):
table = PermanentTable(redis, run.decode())
table = PermanentTable(redis, str(run.decode()))
records = []

for record in redis.zrange(table._redis_key(), 0, -1):
Expand Down

0 comments on commit 1fc1590

Please sign in to comment.