[Zope-Checkins] CVS: Zope2 - version_txt.py:1.3.4.1

Brian Lloyd brian@korak.zope.com
Mon, 16 Jul 2001 09:23:18 -0400


Update of /cvs-repository/Zope2/lib/python/App
In directory korak.zope.com:/home/brian/temp/zope-24-branch/lib/python/App

Modified Files:
      Tag: Zope-2_4-branch
	version_txt.py 
Log Message:
fixed typo in version_txt



--- Updated File version_txt.py in package Zope2 --
--- version_txt.py	2001/06/11 14:50:05	1.3
+++ version_txt.py	2001/07/16 13:23:18	1.3.4.1
@@ -91,7 +91,7 @@
 
     try: 
         s = open(os.path.join(SOFTWARE_HOME,'version.txt')).read()
-        s = re.sub("\(.*?)\?","",s)
+        s = re.sub("\(.*?\)\?","",s)
         s= '(%s, python %d.%d.%d, %s)' % (s,v[0],v[1],v[2],sys.platform)
         return s
     except: