aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/views.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 23:03:07 +0200
committerAymeric Augustin2013-10-17 18:24:58 +0200
commit23c44d8c5cf560cc8cb304d8753e8b658d1fe70d (patch)
tree575ad8a220c70a8f00a3d6fdab49f29d062d10be /debug_toolbar/views.py
parentc22528df06e821936590431db5ba1a424e16f6a0 (diff)
downloaddjango-debug-toolbar-23c44d8c5cf560cc8cb304d8753e8b658d1fe70d.tar.bz2
Enable unicode_literals in all non-empty modules.
Diffstat (limited to 'debug_toolbar/views.py')
-rw-r--r--debug_toolbar/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/debug_toolbar/views.py b/debug_toolbar/views.py
index 045e5cc..f625224 100644
--- a/debug_toolbar/views.py
+++ b/debug_toolbar/views.py
@@ -4,6 +4,8 @@ debug toolbar is displayed, and typically can do Bad Things, so hooking up these
views in any other way is generally not advised.
"""
+from __future__ import unicode_literals
+
from django.http import HttpResponseBadRequest
from django.shortcuts import render_to_response
from django.views.decorators.csrf import csrf_exempt