From 76c82d89464c064872b00ee2bcc44052ccecd30d Mon Sep 17 00:00:00 2001 From: Alex Dedul Date: Sun, 15 Jul 2007 12:43:21 +0000 Subject: [PATCH] Set default values of preferences "default_finished_path" and "default_download_path" to user's $HOME/. --- src/pref.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pref.py b/src/pref.py index 2f23d2906..3d41d1712 100644 --- a/src/pref.py +++ b/src/pref.py @@ -41,9 +41,9 @@ DEFAULT_PREFS = { "auto_end_seeding" : False, "auto_seed_ratio" : 0, "close_to_tray" : False, - "default_download_path" : "", + "default_download_path" : os.path.expanduser("~/"), "default_load_path" : os.path.expanduser("~/"), - "default_finished_path" : "", + "default_finished_path" : os.path.expanduser("~/"), "enable_move_completed" : False, "enable_dht" : True, "enable_system_tray" : True,