summaryrefslogtreecommitdiff
path: root/paste/deploy/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'paste/deploy/config.py')
-rw-r--r--paste/deploy/config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/paste/deploy/config.py b/paste/deploy/config.py
index d690ff3..562a61f 100644
--- a/paste/deploy/config.py
+++ b/paste/deploy/config.py
@@ -14,8 +14,7 @@ def local_dict():
try:
return config_local.wsgi_dict
except NameError:
- from paste.deploy.util.threadinglocal import local
- config_local = local()
+ config_local = threading.local()
config_local.wsgi_dict = result = {}
return result
except AttributeError: