commit | e84c94409fcb88f8db2b99d86934ec078b6c798d | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Mon Mar 12 08:45:57 2012 -0400 |
committer | Joe Gregorio <jcgregorio@google.com> | Mon Mar 12 08:45:57 2012 -0400 |
tree | a01a131ba7f5c758b79677ddf56e5d2dce85d0f0 | |
parent | e78621a3c0fb8c23c979a9ead1e804d63633abe0 [diff] [blame] |
Fix bug in StorageByKeyName. Reviewed in http://codereview.appspot.com/5782058/.
diff --git a/oauth2client/appengine.py b/oauth2client/appengine.py index 73c48d4..1420279 100644 --- a/oauth2client/appengine.py +++ b/oauth2client/appengine.py
@@ -224,7 +224,7 @@ if credential and hasattr(credential, 'set_store'): credential.set_store(self) if self._cache: - self._cache.set(self._key_name, credentials.to_json()) + self._cache.set(self._key_name, credential.to_json()) return credential