diff options
| author | Aymeric Augustin | 2013-10-16 22:08:43 +0200 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-10-17 18:24:57 +0200 | 
| commit | 79831e4053b472921621f288483e95a961a4d142 (patch) | |
| tree | c22c209a8f017231b2a82cf3986edeacdd8d087d /debug_toolbar/views.py | |
| parent | 604499223d6a074141b8901a4fbf53b28fd17126 (diff) | |
| download | django-debug-toolbar-79831e4053b472921621f288483e95a961a4d142.tar.bz2 | |
Remove unused imports.
Diffstat (limited to 'debug_toolbar/views.py')
| -rw-r--r-- | debug_toolbar/views.py | 10 | 
1 files changed, 0 insertions, 10 deletions
| diff --git a/debug_toolbar/views.py b/debug_toolbar/views.py index ee650ba..1445360 100644 --- a/debug_toolbar/views.py +++ b/debug_toolbar/views.py @@ -8,16 +8,6 @@ from django.http import HttpResponseBadRequest  from django.shortcuts import render_to_response  from django.views.decorators.csrf import csrf_exempt -try: -    import json -except ImportError: # python < 2.6 -    from django.utils import simplejson as json - -try: -    from hashlib import sha1 -except ImportError: # python < 2.5 -    from django.utils.hashcompat import sha_constructor as sha1 -  from debug_toolbar.forms import SQLSelectForm | 
