source: products/qPloneComments/tags/3.2.2/Extensions/Install.py @ 1591

Last change on this file since 1591 was 656, checked in by crchemist, 17 years ago

Added qPloneCaptchas properties in portal_properties.

File size: 338 bytes
Line 
1from Products.CMFCore.utils import getToolByName
2from StringIO import StringIO
3
4def uninstall(self):
5    out = StringIO()
6    setup_tool = getToolByName(self, 'portal_setup')
7    setup_tool.runAllImportStepsFromProfile('profile-Products.qPloneComments:uninstall')
8    print >> out, "Imported uninstall profile."
9    return out.getvalue()
Note: See TracBrowser for help on using the repository browser.