diff options
author | Chris Ball <cjb@laptop.org> | 2010-06-22 12:11:36 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2010-06-22 12:11:36 -0400 |
commit | c91e05c4211ea94d513b2024719c6ee27b5d6dab (patch) | |
tree | bed6478da41f6160c212a728e805fe4108a9c1a0 /libbe/storage/util/config.py | |
parent | 0df4bd7ae194bb07f36a2a69a0549037de01cb52 (diff) | |
parent | 401152d6eec5167043dedde60c0a64d0affbd120 (diff) | |
download | bugseverywhere-c91e05c4211ea94d513b2024719c6ee27b5d6dab.tar.gz |
Merge with Trevor
Diffstat (limited to 'libbe/storage/util/config.py')
-rw-r--r-- | libbe/storage/util/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbe/storage/util/config.py b/libbe/storage/util/config.py index 724d2d3..7d59712 100644 --- a/libbe/storage/util/config.py +++ b/libbe/storage/util/config.py @@ -37,8 +37,10 @@ Initialized with :func:`libbe.util.encoding.get_filesystem_encoding`. def path(): """Return the path to the per-user config file. + + Defaults to :file:`~/.bugs_everywhere`. """ - return os.path.expanduser("~/.bugs_everywhere") + return os.path.expanduser(os.path.join('~','.bugs_everywhere')) def set_val(name, value, section="DEFAULT", encoding=None): """Set a value in the per-user config file. |