Set default values of preferences "default_finished_path" and

"default_download_path" to user's $HOME/.
This commit is contained in:
Alex Dedul 2007-07-15 12:43:21 +00:00
parent 6e1a1b88fa
commit 76c82d8946
1 changed files with 2 additions and 2 deletions

View File

@ -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,