The following patch fixed the problem for me (not tested with Plone,
though):

--- Install.py.orig     2005-01-30 07:11:10.000000000 -0500
+++ Install.py  2005-03-07 23:25:38.000000000 -0500
@@ -39,8 +39,14 @@
         else:
             out.write('Skipping %s skin\n' % skin)
 
-    portal_prop=getToolByName(self, 'portal_properties')
-    nav=portal_prop.navigation_properties
+    try:
+        portal_prop=getToolByName(self, 'portal_properties')
+        nav=portal_prop.navigation_properties
+    except AttributeError:
+        out.write("Not running in a Plone site.  Ignoring Plone specific 
installation.\n");
+    except:
+        print "Unexpected error:", sys.exc_info()[0]
+       raise
 
     #out.write('Added navigation properties.')

Per
 
-- 
Per Bojsen                                              <[EMAIL PROTECTED]>
7 Francis Road
Billerica, MA 01821-3618
USA


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to