From 5aec50fb84d4863f9487f83694c803a9c54d09fb Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Wed, 14 Nov 2007 18:25:51 +0000 Subject: #4904: Save downloads to the instance dir, not tmp. --- diff --git a/NEWS b/NEWS index 5fd331d..ab91153 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +* #4904: Save downloads to the instance dir, not tmp. (tomeu) + 72 * Save the page source with mime type text/html (erikos) diff --git a/webactivity.py b/webactivity.py index 39f82d3..123e28d 100755 --- a/webactivity.py +++ b/webactivity.py @@ -71,7 +71,7 @@ class WebActivity(activity.Activity): self._browser = Browser() - temp_path = os.path.join(self.get_activity_root(), 'tmp') + temp_path = os.path.join(self.get_activity_root(), 'instance') downloadmanager.init(self._browser, self, temp_path) sessionhistory.init(self._browser) progresslistener.init(self._browser) -- cgit v0.9.1