Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sugar/activity/activity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/activity/activity.py b/sugar/activity/activity.py
index 0ce932c..6204354 100644
--- a/sugar/activity/activity.py
+++ b/sugar/activity/activity.py
@@ -661,8 +661,8 @@ class Activity(Window, gtk.Container):
# TODO: Find a way of taking a png out of the pixbuf without saving
# to a temp file. Impementing gtk.gdk.Pixbuf.save_to_buffer in pygtk
# would solve this.
- fd, file_path = tempfile.mkstemp('.png')[0]
- fd.close()
+ fd, file_path = tempfile.mkstemp('.png')
+ os.close(fd)
pixbuf.save(file_path, 'png')
f = open(file_path)