Changeset 2043
- Timestamp:
- 09/27/08 17:28:11
- Files:
-
- trunk/cherrypy/wsgiserver/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/wsgiserver/__init__.py
r2042 r2043 1450 1450 # SERVER_SOFTWARE is common for IIS. It's also helpful for 1451 1451 # us to pass a default value for the "Server" response header. 1452 environ["SERVER_SOFTWARE"] = "%s WSGI Server" % self.version 1452 if environ.get("SERVER_SOFTWARE") is None: 1453 environ["SERVER_SOFTWARE"] = "%s WSGI Server" % self.version 1453 1454 # set a non-standard environ entry so the WSGI app can know what 1454 1455 # the *real* server protocol is (and what features to support).

