diff options
author | Guido van Rossum <guido@python.org> | 2006-08-17 08:56:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-17 08:56:08 (GMT) |
commit | 06a2dc785986240e4598f96c510f83eea14c6658 (patch) | |
tree | baaf42ea48c071fc3eb8f06718d29ec711b6730a | |
parent | 50e9fb9e2d6b4b12524116ab775ac6543e4a5332 (diff) | |
download | cpython-06a2dc785986240e4598f96c510f83eea14c6658.zip cpython-06a2dc785986240e4598f96c510f83eea14c6658.tar.gz cpython-06a2dc785986240e4598f96c510f83eea14c6658.tar.bz2 |
Use explicit relative import, to make things work again.
-rw-r--r-- | Lib/wsgiref/handlers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py index 099371b..cc3a805 100644 --- a/Lib/wsgiref/handlers.py +++ b/Lib/wsgiref/handlers.py @@ -1,8 +1,8 @@ """Base classes for server/gateway implementations""" from types import StringType -from util import FileWrapper, guess_scheme, is_hop_by_hop -from headers import Headers +from .util import FileWrapper, guess_scheme, is_hop_by_hop +from .headers import Headers import sys, os, time |