Fix not add analytics if DEBUG=True

This commit is contained in:
Andrii Marynets 2017-06-30 01:33:12 +03:00
parent 2ad984504c
commit ebf8b0646d
1 changed files with 2 additions and 3 deletions

View File

@ -8,9 +8,8 @@ def google_analytics(request):
"""
host = request.get_host()
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS', False).get(host)
print(ga_prop_id)
if ga_prop_id:
if not settings.DEBUG and ga_prop_id:
return {
'GOOGLE_ANALYTICS_PROPERTY_ID': ga_prop_id
}
return {}
return {}