[CMF-checkins] CVS: CMF - PortalContent.py:1.9

tseaver@digicool.com tseaver@digicool.com
Thu, 22 Mar 2001 20:24:43 -0500 (EST)


Update of /cvs-repository/CMF/CMFCore
In directory korak:/tmp/cvs-serv27998

Modified Files:
	PortalContent.py 
Log Message:


* Convert physical path to string (Tracker #224).



--- Updated File PortalContent.py in package CMF --
--- PortalContent.py	2001/03/02 20:06:23	1.8
+++ PortalContent.py	2001/03/23 01:24:42	1.9
@@ -181,7 +181,7 @@
                                 % ti.id)
         else:
             raise 'Not Found', ('Cannot find default view for "%s"'
-                                % self.getPhysicalPath())
+                                % string.join( self.getPhysicalPath() ) )
 
     security.declareProtected(CMFCorePermissions.View, 'index_html')
     index_html = ComputedAttribute(_index_html, 1)