Fixing these incorrect references, big thanks to Brenden Mulligan for pointing them out.
This commit is contained in:
parent
fab3d7a216
commit
e9b3190372
3 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
# your_app = name of your root djang app.
|
||||
urlpatterns = patterns('your_app.django_twitter_oauth.views',
|
||||
urlpatterns = patterns('your_app.twython_django_oauth.views',
|
||||
|
||||
# First leg of the authentication journey...
|
||||
(r'^login/?$', begin_auth),
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ from twython import Twython
|
|||
|
||||
# If you've got your own Profile setup, see the note in the models file
|
||||
# about adapting this to your own setup.
|
||||
from your_app.twitter.models import Profile
|
||||
from your_app.twython_django_oauth.models import Profile
|
||||
|
||||
# Move these into your settings.py if you're feeling adventurous.
|
||||
CONSUMER_KEY = "YOUR CONSUMER KEY HERE"
|
||||
|
|
|
|||
Reference in a new issue