[CMF-checkins] CVS: CMF/CMFCore - FSMetadata.py:1.7
Sidnei da Silva
sidnei@x3ng.com.br
Sat, 24 May 2003 10:42:03 -0400
Update of /cvs-repository/CMF/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv22128/CMFCore
Modified Files:
FSMetadata.py
Log Message:
Rewrapped some long lines
=== CMF/CMFCore/FSMetadata.py 1.6 => 1.7 ===
--- CMF/CMFCore/FSMetadata.py:1.6 Sat May 24 10:37:54 2003
+++ CMF/CMFCore/FSMetadata.py Sat May 24 10:42:03 2003
@@ -35,8 +35,8 @@
self._filename = filename
def read(self):
- """ Find the files to read, either the old security and properties type or
- the new metadata type """
+ """ Find the files to read, either the old security and
+ properties type or the new metadata type """
filename = self._filename + '.metadata'
if exists(filename):
# found the new type, lets use that
@@ -74,7 +74,8 @@
# the two sections we care about
self._properties = self._getSectionDict(cfg, 'default')
- self._security = self._getSectionDict(cfg, 'security', self._securityParser)
+ self._security = self._getSectionDict(cfg, 'security',
+ self._securityParser)
except:
LOG('FSMetadata',
ERROR,