18 Sep
1999
18 Sep
'99
12:11 p.m.
the ZOPE_VERSION determined in ZServer/__init__.py is always '(unreleased version)' as ZServer is imported by Z2.py before SOFTWARE_HOME is set up; this means that status getting functions which make use of ZServer's ZOPE_VERSION always report the wrong version. The simplest fix is just to change ZServer/__init__.py to import FindHomes as well as version_txt ie at line 96 instead of import App.version_txt use import App.version_txt, App.FindHomes -- Robin Becker