From 853bcf3b49a833c144f87465a322d77f3f32f0a3 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Fri, 2 Mar 2012 15:30:23 -0500 Subject: [PATCH] TBR http://codereview.appspot.com/5712052/. Fixes issue #111. --- oauth2client/appengine.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oauth2client/appengine.py b/oauth2client/appengine.py index 8a24fce..73c48d4 100644 --- a/oauth2client/appengine.py +++ b/oauth2client/appengine.py @@ -409,7 +409,7 @@ class OAuth2Decorator(object): user = users.get_current_user() memcache.set(user.user_id(), pickle.dumps(self.flow), namespace=OAUTH2CLIENT_NAMESPACE) - return url + return str(url) def http(self): """Returns an authorized http instance. diff --git a/setup.py b/setup.py index b6fee4e..6095d8f 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ packages = [ ] install_requires = [ - 'httplib2>=0.7.2', + 'httplib2>=0.7.4', 'oauth2', 'python-gflags', ]