I haven tried it, but I think the best fix is not to make the decode work 
by putting the obviously missing parenthesis. The fix is simply to remove 
the .decode, because to_native should take care of it, so this:

rtn = {to_native(k.decode): v for k, v in self.db.r_server.hgetall(key).
items()}

Would become

rtn = {to_native(k): v for k, v in self.db.r_server.hgetall(key).items()}

The second decode you used is also probably wrong although it may work with 
python 3. I would say it should be like this

if to_native(rtn['unique_key']) == to_native(self.unique_key):

If no one makes a pull request in the mean time, I'll probably have time to 
test this later in the month and do it.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/081b2006-3cb1-47de-b1f0-eaae031a3b7e%40googlegroups.com.

Reply via email to