Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-09-12 18:30:21 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-09-12 18:30:21 (GMT)
commit47f473189ef1cf16ba5f137b600385f8458416c5 (patch)
treea6b01b2c03f69969c35c70ed5042f3a294b24476
parent6cb7c774dd02db39459f03494bd34865afd445e5 (diff)
Fix typo so the removal of expanded activity bundles is complete.
-rw-r--r--NEWS1
-rw-r--r--sugar/bundle/bundle.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index d467a99..7a0de52 100644
--- a/NEWS
+++ b/NEWS
@@ -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)
* #3053: Fix the distance between the clustered xos and the activity. (marco)
* Make the sizes of mesh icons match Eben spec. (marco)
diff --git a/sugar/bundle/bundle.py b/sugar/bundle/bundle.py
index fa56642..a2e9076 100644
--- a/sugar/bundle/bundle.py
+++ b/sugar/bundle/bundle.py
@@ -137,7 +137,7 @@ class Bundle:
os.remove(os.path.join(root, name))
for name in dirs:
os.rmdir(os.path.join(root, name))
- os.rmdir(self._path)
+ os.rmdir(root)
else:
if not os.path.isfile(self._path) or ext != self._zipped_extension:
raise InvalidPathException