put __full_version__ back

This commit is contained in:
Jean-Paul Calderone 2022-11-30 13:32:04 -05:00
parent 4ed1b27aba
commit 46c996c662
1 changed files with 2 additions and 0 deletions

View File

@ -7,10 +7,12 @@ community web site: U{https://tahoe-lafs.org/}
__all__ = [
"__version__",
"__appname__",
"__full_version__",
]
__appname__ = "tahoe-lafs"
from allmydata._version import __version__
__full_version__ = f"{__appname__}/{__version__}"
# Install Python 3 module locations in Python 2:
from future import standard_library