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