diff options
Diffstat (limited to 'fb/context_processors.py')
| -rw-r--r-- | fb/context_processors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fb/context_processors.py b/fb/context_processors.py index 92a9a0a..82e4d4f 100644 --- a/fb/context_processors.py +++ b/fb/context_processors.py @@ -1,5 +1,5 @@ from django.conf import settings def fb_app_id(request): - print 'bla' - return { settings.FACEBOOK_APP_ID }
\ No newline at end of file + """Add the Facebook app id to template context""" + return { 'FACEBOOK_APP_ID' : settings.FACEBOOK_APP_ID }
\ No newline at end of file |
