aboutsummaryrefslogtreecommitdiff
path: root/oauth2client/contrib/django_util/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauth2client/contrib/django_util/decorators.py')
-rw-r--r--oauth2client/contrib/django_util/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauth2client/contrib/django_util/decorators.py b/oauth2client/contrib/django_util/decorators.py
index 0e0a4b2..214f867 100644
--- a/oauth2client/contrib/django_util/decorators.py
+++ b/oauth2client/contrib/django_util/decorators.py
@@ -36,7 +36,7 @@ def oauth_required(decorated_function=None, scopes=None, **decorator_kwargs):
developerKey=API_KEY)
events = service.events().list(
calendarId='primary').execute()['items']
- return HttpResponse("email: %s , calendar: %s" % (email, str(events)))
+ return HttpResponse("email: %s, calendar: %s" % (email, str(events)))
:param decorated_function: View function to decorate, must have the Django
request object as the first argument