PATH:
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
raven
/
contrib
/
django
/
templatetags
""" 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 ''
[+]
__pycache__
[-] __init__.py
[edit]
[-] raven.py
[edit]
[+]
..