[Zope-Checkins] CVS: ZODB3/ZODB - config.py:1.10

Fred L. Drake, Jr. fred@zope.com
Tue, 28 Jan 2003 18:15:58 -0500


Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv28575

Modified Files:
	config.py 
Log Message:
The "stop" argument for the FileStorage constructor can't be
meaningfully used the way the config schema currently defines the
field, so remove it.


=== ZODB3/ZODB/config.py 1.9 => 1.10 ===
--- ZODB3/ZODB/config.py:1.9	Thu Jan 16 12:50:36 2003
+++ ZODB3/ZODB/config.py	Tue Jan 28 18:15:56 2003
@@ -102,7 +102,6 @@
         return FileStorage(self.config.path,
                            create=self.config.create,
                            read_only=self.config.read_only,
-                           stop=self.config.stop,
                            quota=self.config.quota)
 
 class ZEOClient(BaseConfig):