Commit 28e6af93 authored by Matt Behrens's avatar Matt Behrens

#79: don't swallow App.FindHomes exceptions

parent df07a42e
......@@ -33,8 +33,9 @@ from medusa.test import max_sockets
CONNECTION_LIMIT=max_sockets.max_select_sockets()
ZSERVER_VERSION='1.1b1'
import App.FindHomes
try:
import App.version_txt, App.FindHomes
import App.version_txt
ZOPE_VERSION=App.version_txt.version_txt()
except:
ZOPE_VERSION='experimental'
......
......@@ -19,6 +19,8 @@ Zope Changes
- Collector #72: Start on Windows 95 machines with no network
devices installed.
- Collector #79: Don't swallow App.FindHomes exceptions.
Zope 2.6.0 alpha 1
Features Added
......
......@@ -33,8 +33,9 @@ from medusa.test import max_sockets
CONNECTION_LIMIT=max_sockets.max_select_sockets()
ZSERVER_VERSION='1.1b1'
import App.FindHomes
try:
import App.version_txt, App.FindHomes
import App.version_txt
ZOPE_VERSION=App.version_txt.version_txt()
except:
ZOPE_VERSION='experimental'
......
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