2005-09-06 | paulb | raw annotate files changeset graph | [project @ 2005-09-06 23:02:21 by paulb] Added Debian packaging instructions. |
1 --- Adapters/CGIAdapter.py 2005-08-25 01:09:02.759432184 +0200 2 +++ Adapters/CGIAdapter.py 2005-08-25 01:09:05.778973144 +0200 3 @@ -48,7 +48,7 @@ 4 msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY) 5 6 myInput = '' 7 - if os.environ.has_key('CONTENT_LENGTH'): 8 + if os.environ.has_key('CONTENT_LENGTH') and os.environ['CONTENT_LENGTH']: 9 length = int(os.environ['CONTENT_LENGTH']) 10 myInput = myInput + sys.stdin.read(length) 11