From 25eda807abbf3ccba0a2ea2abecd0c7e133e114c Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sun, 17 Oct 2010 01:44:49 -0400 Subject: [PATCH] Oh yeah, forgot to strip these... --- oauth_django_example/twitter/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oauth_django_example/twitter/views.py b/oauth_django_example/twitter/views.py index 14d8e69..cb3f182 100644 --- a/oauth_django_example/twitter/views.py +++ b/oauth_django_example/twitter/views.py @@ -7,8 +7,8 @@ from django.contrib.auth.decorators import login_required from twython import Twython from twitter.models import Profile -CONSUMER_KEY = "piKE9TwKoAhJoj7KEMlwGQ" -CONSUMER_SECRET = "RA9IzvvzoLAFGOOoOndm1Cvyh94pwPWLy4Grl4dt0o" +CONSUMER_KEY = "YOUR CONSUMER KEY HERE" +CONSUMER_SECRET = "YOUR CONSUMER SECRET HERE" def twitter_logout(request): logout(request)