diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-08-24 06:35:47 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-08-24 06:35:47 +0000 |
commit | 27d3a90cc608f4efa0e6b6ca1ba48a995356b5ef (patch) | |
tree | 94403d22bdee74da9518a3ecc3d76272b4c43a8d /cherrypy/lib/cptools.py | |
parent | 3a594e18c290cd8bf62870b7195957fbb5966fc5 (diff) | |
download | cherrypy-git-27d3a90cc608f4efa0e6b6ca1ba48a995356b5ef.tar.gz |
Made all imports absolute "just in case" for Python 2.5.
Diffstat (limited to 'cherrypy/lib/cptools.py')
-rw-r--r-- | cherrypy/lib/cptools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/lib/cptools.py b/cherrypy/lib/cptools.py index 8149e45e..7c8e1fda 100644 --- a/cherrypy/lib/cptools.py +++ b/cherrypy/lib/cptools.py @@ -1,7 +1,7 @@ """Functions for builtin CherryPy tools.""" import cherrypy -import http as _http +from cherrypy import http as _http # Conditional HTTP request support # |