diff options
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/http.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbe/storage/http.py b/libbe/storage/http.py index 20dade4..c69598c 100644 --- a/libbe/storage/http.py +++ b/libbe/storage/http.py @@ -29,9 +29,9 @@ implementation. See Also -------- :mod:`libbe.command.serve` : the associated server - """ +from __future__ import absolute_import import sys import urllib import urllib2 @@ -39,7 +39,8 @@ import urlparse import libbe import libbe.version -import base +from . import base + from libbe import TESTING if TESTING == True: |