projects
/
be.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d4283e
)
Return a meaningful Storage.version()
author
W. Trevor King
<wking@drexel.edu>
Fri, 1 Jan 2010 15:46:23 +0000
(10:46 -0500)
committer
W. Trevor King
<wking@drexel.edu>
Fri, 1 Jan 2010 15:46:23 +0000
(10:46 -0500)
libbe/storage/base.py
patch
|
blob
|
history
diff --git
a/libbe/storage/base.py
b/libbe/storage/base.py
index d85627fdc86a9ed3955cf10ff9c1306e78e41239..aa32ea90b6c2bbf2839cde39e7849e64aa216776 100644
(file)
--- a/
libbe/storage/base.py
+++ b/
libbe/storage/base.py
@@
-27,6
+27,7
@@
from libbe.error import NotSupported
import libbe.storage
from libbe.util.tree import Tree
from libbe.util import InvalidObject
+import libbe.version
from libbe import TESTING
if TESTING == True:
@@
-163,7
+164,7
@@
class Storage (object):
def version(self):
"""Return a version string for this backend."""
- return
'0'
+ return
libbe.version.version()
def storage_version(self, revision=None):
"""Return the storage format for this backend."""