diff options
author | W. Trevor King <wking@tremily.us> | 2012-11-12 12:18:43 -0500 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-11-12 12:18:43 -0500 |
commit | 5887a061501443f780f976b5fb31320a858abe7a (patch) | |
tree | 6be54aa1244c3fe375b057e65711e0392b3f1d4b /libbe | |
parent | 6e82ee270a73afa4c827afbb14d3dc7062773389 (diff) | |
download | bugseverywhere-5887a061501443f780f976b5fb31320a858abe7a.tar.gz |
storage: convert to Python 3 compatibility
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/__init__.py | 18 |
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', |