Commit 680fc80a authored by Chris McDonough's avatar Chris McDonough

One more time.

parent 3379093b
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__doc__="""System management components""" __doc__="""System management components"""
__version__='$Revision: 1.67 $'[11:-2] __version__='$Revision: 1.68 $'[11:-2]
import sys,os,time,string,Globals, Acquisition, os, Undo import sys,os,time,string,Globals, Acquisition, os, Undo
...@@ -418,7 +418,8 @@ class ApplicationManager(Folder,CacheManager): ...@@ -418,7 +418,8 @@ class ApplicationManager(Folder,CacheManager):
continue continue
version_txt = None version_txt = None
for name in ('VERSION.TXT', 'VERSION.txt', 'version.txt'): for name in ('VERSION.TXT', 'VERSION.txt', 'version.txt'):
if exists(path_join(package_dir, name)): v = path_join(package_dir, name))
if exists(v):
version_txt = v version_txt = v
break break
if version_txt is not None: if version_txt is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment