From b1dbca37c300e4104495ae379cb520876d094de4 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 25 Aug 2008 03:26:38 +0000 Subject: [PATCH] Change default 'torrentfiles_location' to just the default download directory --- ChangeLog | 2 +- deluge/core/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 60b48a6db..a9bc5f722 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,7 @@ Deluge 0.9.08 - "1.0.0_RC8" (In Development) * Attempt to automatically upgrade a 0.5.x state file to new format Plugins: - * Fix bug in Blocklist that prevented downloading of new file every X days + * Fix bug in Blocklist that prevented downloading a new file every X days GtkUI: * Sort filenames alphabetically in add torrent dialog diff --git a/deluge/core/core.py b/deluge/core/core.py index 58bcadc2f..363aee8e1 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -67,7 +67,7 @@ DEFAULT_PREFS = { "download_location": deluge.common.get_default_download_dir(), "listen_ports": [6881, 6891], "copy_torrent_file": False, - "torrentfiles_location": os.path.join(deluge.common.get_default_download_dir(), "torrentfiles"), + "torrentfiles_location": deluge.common.get_default_download_dir(), "plugins_location": os.path.join(deluge.configmanager.get_config_dir(), "plugins"), "state_location": os.path.join(deluge.configmanager.get_config_dir(), "state"), "prioritize_first_last_pieces": False,