summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ianb@colorstudy.com>2010-09-28 18:39:58 -0500
committerIan Bicking <ianb@colorstudy.com>2010-09-28 18:39:58 -0500
commitff4ed291d93736145a502ac21c8631a887aa500b (patch)
tree1b0fbce7d9ed640fd488de41dc5f30b6de0b8ef7
parente90583a948a4a9694819eead75b64c0ec8edf787 (diff)
downloadpaste-ff4ed291d93736145a502ac21c8631a887aa500b.tar.gz
Fix #444, egg:Paste#cgi should work now
-rw-r--r--docs/news.txt5
-rw-r--r--paste/cgiapp.py1
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/news.txt b/docs/news.txt
index cf018f5..43c87f7 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -3,6 +3,11 @@ News
.. contents::
+hg tip
+------
+
+* Fixed ``egg:Paste#cgi``
+
1.7.5.1
-------
diff --git a/paste/cgiapp.py b/paste/cgiapp.py
index 2e5ae69..8801750 100644
--- a/paste/cgiapp.py
+++ b/paste/cgiapp.py
@@ -272,5 +272,6 @@ def make_cgi_application(global_conf, script, path=None, include_os_environ=None
path = global_conf.get('path') or global_conf.get('PATH')
include_os_environ = converters.asbool(include_os_environ)
return CGIApplication(
+ None,
script, path=path, include_os_environ=include_os_environ,
query_string=query_string)