On Donnerstag, 22. Januar 2009, Zulq Alam wrote: > Hi > > I tried the uninstaller before updating to the latest snapshot and it > left most of the directories in place. A quick look at uninstall.py > shows the problem: > > # Cleanup the install directories > for name in ['ericExamplesDir', # snip ]: > if os.path.exists(name): > shutil.rmtree(getConfig(name), True) > > I think the check should be something like: > > dirpath = getConfig(name) > if os.path.exists(dirpath): > shutil.rmtree(dirpath, True) >
You are absolutely right. That should be the code. It will be fixed in the next release. > Is there a bug tracker database I can add this to? You told me. I am the bug tracker ;-) > > Regards, > Zulq. > > _______________________________________________ > Eric mailing list > [email protected] > http://www.riverbankcomputing.com/mailman/listinfo/eric -- Detlev Offenbach [email protected] _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
