[Eric] Uninstall Bug
Zulq Alam
me at zulq.net
Thu Jan 22 12:06:30 GMT 2009
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.
More information about the Eric
mailing list