diff options
Diffstat (limited to 'Lib/CGIHTTPServer.py')
-rw-r--r-- | Lib/CGIHTTPServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py index dc17392..fa30cbd 100644 --- a/Lib/CGIHTTPServer.py +++ b/Lib/CGIHTTPServer.py @@ -21,7 +21,7 @@ import SimpleHTTPServer try: os.fork -except NameError: +except AttributeError: raise SystemError, __name__ + " requires os.fork()" |