Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xwebactivity.py2
2 files changed, 3 insertions, 1 deletions
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)