[Zope-CVS] CVS: Products/AdaptableStorage/gateway_fs - FSConnection.py:1.6.2.7
Christian Zagrodnick
cz@gocept.com
Thu, 6 Feb 2003 10:40:30 -0500
Update of /cvs-repository/Products/AdaptableStorage/gateway_fs
In directory cvs.zope.org:/tmp/cvs-serv2091/gateway_fs
Modified Files:
Tag: zagy-patches
FSConnection.py
Log Message:
- Replaced a hidden_filenames referens by hiden_re.
=== Products/AdaptableStorage/gateway_fs/FSConnection.py 1.6.2.6 => 1.6.2.7 ===
--- Products/AdaptableStorage/gateway_fs/FSConnection.py:1.6.2.6 Thu Feb 6 08:01:05 2003
+++ Products/AdaptableStorage/gateway_fs/FSConnection.py Thu Feb 6 10:40:27 2003
@@ -395,7 +395,7 @@
if non_containers.get(dir):
raise FSWriteError(
"Not a directory: %s" % dir)
- if (self.hidden_filenames.search(os.path.split(subpath)[1])
+ if (self.hidden_re.search(os.path.split(subpath)[1])
is not None):
raise FSWriteError(
'The id %s is not allowed.' % (os.path.split(subpath)[1], ))