Merge pull request #2047 from kvanzuijlen/fix_issues_for_python3

'unique_key' shouldn't be saved as bytes
This commit is contained in:
mdipierro
2018-11-01 08:24:27 -07:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -186,8 +186,8 @@ class MockQuery(object):
if rtn:
if self.unique_key:
# make sure the id and unique_key are correct
if rtn[b'unique_key'] == to_bytes(self.unique_key):
rtn[b'update_record'] = self.update # update record support
if rtn['unique_key'] == self.unique_key:
rtn['update_record'] = self.update # update record support
else:
rtn = None
return [Storage(rtn)] if rtn else []

View File

@@ -1051,7 +1051,7 @@ class Session(Storage):
if record_id.isdigit() and long(record_id) > 0:
new_unique_key = web2py_uuid()
row = table(record_id)
if row and row[b'unique_key'] == to_bytes(unique_key):
if row and row['unique_key'] == unique_key:
table._db(table.id == record_id).update(unique_key=new_unique_key)
else:
record_id = None