/
opt
/
cloudlinux
/
venv
/
lib64
/
python3.11
/
site-packages
/
raven
/
contrib
/
django
/
templatetags
/
Upload Filee
HOME
""" raven.contrib.django.templatetags.raven ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2010-2013 by the Sentry Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ from __future__ import absolute_import from django import template register = template.Library() @register.simple_tag def sentry_public_dsn(scheme=None): from raven.contrib.django.models import client return client.get_public_dsn(scheme) or ''