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)

Is there a bug tracker database I can add this to?

Regards,
Zulq.

_______________________________________________
Eric mailing list
[email protected]
http://www.riverbankcomputing.com/mailman/listinfo/eric

Reply via email to