From: Guido van Rossum Date: Thu, 17 Aug 2006 08:56:08 +0000 (+0000) Subject: Use explicit relative import, to make things work again. X-Git-Tag: v3.0a1~1402 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06a2dc785986240e4598f96c510f83eea14c6658;p=python Use explicit relative import, to make things work again. --- diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py index 099371b079..cc3a8058f7 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