Change lots of keys to IDs for length.

This commit is contained in:
Ian Gulliver
2015-06-14 19:56:13 -07:00
parent 71514b7655
commit 0df573171d
3 changed files with 9 additions and 9 deletions

2
api.py
View File

@@ -225,7 +225,7 @@ class APIWrapper(webapp2.RequestHandler):
@session.session_required
def post(self):
profile_str = str(
models.Client.profile.get_value_for_datastore(self.client))
models.Client.profile.get_value_for_datastore(self.client).id())
ret = {
'status': 'ok',
'profile': profile_str,