blob: 3a8f300c4c61956e38eb0a44c95b9fc9cd86fce9 (
plain)
1
2
3
4
5
6
7
8
9
|
from __future__ import unicode_literals
__all__ = ('VERSION',)
try:
VERSION = __import__('pkg_resources') \
.get_distribution('django-debug-toolbar').version
except Exception as e:
VERSION = 'unknown'
|