Skip to content
Snippets Groups Projects
Verified Commit 87a05968 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Silence NameError when deleting ImproperlyConfigured

Closes #30.
parent 7c0a398f
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,11 @@ else:
USING_DJANGO = True
finally:
del ImproperlyConfigured
try:
del ImproperlyConfigured
except NameError:
# We never got it
pass # noqa
try:
# Try importings ucache's most simple backend
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment