summaryrefslogtreecommitdiff
path: root/pypi.fcgi
diff options
context:
space:
mode:
authormartin.von.loewis <devnull@localhost>2009-04-01 02:10:40 +0000
committermartin.von.loewis <devnull@localhost>2009-04-01 02:10:40 +0000
commit8fd4d079d6f183f75659c1271edd5cc22fd221ae (patch)
tree6086d031ca7e18b63060155ee56bd5c10739d5df /pypi.fcgi
parentd80840e54f03db3801366302ed0590b2074fc45e (diff)
downloaddecorator-8fd4d079d6f183f75659c1271edd5cc22fd221ae.tar.gz
Drop name parameter from config. Patch by Dan Callahan.
Diffstat (limited to 'pypi.fcgi')
-rwxr-xr-xpypi.fcgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/pypi.fcgi b/pypi.fcgi
index bbd4668..32a3895 100755
--- a/pypi.fcgi
+++ b/pypi.fcgi
@@ -46,7 +46,7 @@ def handle_request(req, env):
prefix = os.path.dirname(__file__)
sys.path.insert(0, prefix)
import config
-cfg = config.Config(prefix+'/config.ini', 'webui')
+cfg = config.Config(prefix+'/config.ini')
fcg = thfcgi.FCGI(handle_request,
max_requests=-1,
backlog=50,