mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 13:33:09 +00:00
0fb49375c0
This is to work-around https://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being . refs #1054.
9 lines
296 B
Python
9 lines
296 B
Python
__version__ = "unknown"
|
|
try:
|
|
from _version import __version__
|
|
except ImportError:
|
|
# We're running in a tree that hasn't run darcsver from the pyutil library,
|
|
# and didn't come with a _version.py, so we don't know what our version
|
|
# is. This should not happen very often.
|
|
pass
|