[Zope-dev] Re: Uninstall Leakfinder

Shane Hathaway shane@zope.com
Wed, 08 Aug 2001 14:06:18 -0400


Chris Withers wrote:

>What the recommended way to uninstall the Leakfinder product?
>
There isn't an easy way right now.  Here's a fix to your external method:

def fix_cp(self):
    cp = self.Control_Panel
    try: del cp.LeakFinder
    except: pass
    try:
        del cp._objects
        return "done"
    except: pass
    return "nope"


Shane