Commit 3a9b28ba authored by Fred Drake's avatar Fred Drake

The "stop" argument for the FileStorage constructor can't be

meaningfully used the way the config schema currently defines the
field, so remove it.
parent ebfd84d4
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Open database and storage from a configuration. """Open database and storage from a configuration.
$Id: config.py,v 1.9 2003/01/16 17:50:36 fdrake Exp $""" $Id: config.py,v 1.10 2003/01/28 23:15:56 fdrake Exp $"""
import os import os
import StringIO import StringIO
...@@ -102,7 +102,6 @@ class FileStorage(BaseConfig): ...@@ -102,7 +102,6 @@ class FileStorage(BaseConfig):
return FileStorage(self.config.path, return FileStorage(self.config.path,
create=self.config.create, create=self.config.create,
read_only=self.config.read_only, read_only=self.config.read_only,
stop=self.config.stop,
quota=self.config.quota) quota=self.config.quota)
class ZEOClient(BaseConfig): class ZEOClient(BaseConfig):
......
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