summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gr?nholm <alex.gronholm@nextday.fi>2011-05-17 02:27:02 +0300
committerAlex Gr?nholm <alex.gronholm@nextday.fi>2011-05-17 02:27:02 +0300
commita7d77059eb5ae0df5adf4e5159598bfeb6cef9b8 (patch)
tree272bccf7e4bd360c318d713f89bbbce3154aedfe
parent8d0fa5407b29605f1b217fc0c9945b9404330970 (diff)
downloadpastedeploy-a7d77059eb5ae0df5adf4e5159598bfeb6cef9b8.tar.gz
Removed an unnecessary (and dangerous?) import
-rw-r--r--paste/deploy/__init__.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/paste/deploy/__init__.py b/paste/deploy/__init__.py
index f89218f..94c63a8 100644
--- a/paste/deploy/__init__.py
+++ b/paste/deploy/__init__.py
@@ -1,10 +1,3 @@
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
-from loadwsgi import *
-try:
- from config import CONFIG
-except ImportError:
- # @@: Or should we require Paste? Or should we put threadlocal
- # into this package too?
- pass
-
+from paste.deploy.loadwsgi import *