From caa79365295a4e7c1d46336ae0e1e839e865cfde Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 24 Aug 2012 07:36:20 -0400 Subject: storage:http: use an explicit relative import for base. --- libbe/storage/http.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libbe/storage/http.py') 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: -- cgit