aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2012-11-12 12:18:43 -0500
committerW. Trevor King <wking@tremily.us>2012-11-12 12:18:43 -0500
commit5887a061501443f780f976b5fb31320a858abe7a (patch)
tree6be54aa1244c3fe375b057e65711e0392b3f1d4b
parent6e82ee270a73afa4c827afbb14d3dc7062773389 (diff)
downloadbugseverywhere-5887a061501443f780f976b5fb31320a858abe7a.tar.gz
storage: convert to Python 3 compatibility
-rw-r--r--libbe/storage/__init__.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/libbe/storage/__init__.py b/libbe/storage/__init__.py
index 991859a..ccadb9c 100644
--- a/libbe/storage/__init__.py
+++ b/libbe/storage/__init__.py
@@ -30,16 +30,16 @@ Also define an assortment of storage-related tools and utilities:
* :py:mod:`libbe.storage.util`
"""
-import base
+from . import base as _base
-ConnectionError = base.ConnectionError
-InvalidStorageVersion = base.InvalidStorageVersion
-InvalidID = base.InvalidID
-InvalidRevision = base.InvalidRevision
-InvalidDirectory = base.InvalidDirectory
-NotWriteable = base.NotWriteable
-NotReadable = base.NotReadable
-EmptyCommit = base.EmptyCommit
+ConnectionError = _base.ConnectionError
+InvalidStorageVersion = _base.InvalidStorageVersion
+InvalidID = _base.InvalidID
+InvalidRevision = _base.InvalidRevision
+InvalidDirectory = _base.InvalidDirectory
+NotWriteable = _base.NotWriteable
+NotReadable = _base.NotReadable
+EmptyCommit = _base.EmptyCommit
# a list of all past versions
STORAGE_VERSIONS = ['Bugs Everywhere Tree 1 0',