home env doesnt exist in windows, so work around that

This commit is contained in:
Marcos Pinto 2007-12-14 03:48:16 +00:00
parent 83be470f1e
commit f133704905
1 changed files with 4 additions and 1 deletions

View File

@ -67,6 +67,9 @@ def get_config_dir(filename=None):
def get_default_download_dir(): def get_default_download_dir():
"""Returns the default download directory""" """Returns the default download directory"""
if common.windows_check():
return os.path.expanduser("~")
else:
return os.environ.get("HOME") return os.environ.get("HOME")
def get_default_torrent_dir(): def get_default_torrent_dir():