Fix typo so the removal of expanded activity bundles is complete.

This commit is contained in:
Tomeu Vizoso 2007-09-12 20:30:21 +02:00
parent 6cb7c774dd
commit 47f473189e
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -1,3 +1,4 @@
* Fix typo so the removal of expanded activity bundles is complete. (tomeu)
* Don't disable the clipboard icons when they are still incomplete. (tomeu) * Don't disable the clipboard icons when they are still incomplete. (tomeu)
* #3053: Fix the distance between the clustered xos and the activity. (marco) * #3053: Fix the distance between the clustered xos and the activity. (marco)
* Make the sizes of mesh icons match Eben spec. (marco) * Make the sizes of mesh icons match Eben spec. (marco)

View File

@ -137,7 +137,7 @@ class Bundle:
os.remove(os.path.join(root, name)) os.remove(os.path.join(root, name))
for name in dirs: for name in dirs:
os.rmdir(os.path.join(root, name)) os.rmdir(os.path.join(root, name))
os.rmdir(self._path) os.rmdir(root)
else: else:
if not os.path.isfile(self._path) or ext != self._zipped_extension: if not os.path.isfile(self._path) or ext != self._zipped_extension:
raise InvalidPathException raise InvalidPathException