From b454a79d106d256f7eea8d0e23567e613928bab5 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 19 Mar 2011 22:15:12 +0200 Subject: and it worked --- fb/context_processors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fb') 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 -- cgit v1.3.1