aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2012-08-24 07:36:20 -0400
committerW. Trevor King <wking@tremily.us>2012-08-24 07:51:30 -0400
commitcaa79365295a4e7c1d46336ae0e1e839e865cfde (patch)
tree36cabeb60415126183db46a259a0172da6cfb701 /libbe/storage
parent171378e7399e7ff2651e879a8a8f4108152a6acb (diff)
downloadbugseverywhere-caa79365295a4e7c1d46336ae0e1e839e865cfde.tar.gz
storage:http: use an explicit relative import for base.
Diffstat (limited to 'libbe/storage')
-rw-r--r--libbe/storage/http.py5
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: