diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-06-09 17:47:00 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-06-09 17:47:00 +0000 |
commit | 982c30b861837b2a3dcadd1d839d1290910e93f7 (patch) | |
tree | 644d072468a6e0934f918e0fec71115dc62ee15f /Lib/wsgiref/handlers.py | |
parent | c48b0e6657691be44a01415ee6654e37590980c2 (diff) | |
download | cpython-git-982c30b861837b2a3dcadd1d839d1290910e93f7.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/wsgiref/handlers.py')
-rw-r--r-- | Lib/wsgiref/handlers.py | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py index 52771a2562..22e7317384 100644 --- a/Lib/wsgiref/handlers.py +++ b/Lib/wsgiref/handlers.py @@ -209,7 +209,7 @@ class BaseHandler: assert type(data) is StringType,"write() argument must be string" if not self.status: - raise AssertionError("write() before start_response()") + raise AssertionError("write() before start_response()") elif not self.headers_sent: # Before the first output, send the stored headers @@ -473,20 +473,3 @@ class CGIHandler(BaseCGIHandler): self, sys.stdin, sys.stdout, sys.stderr, dict(os.environ.items()), multithread=False, multiprocess=True ) - - - - - - - - - - - - - - - - - |