summaryrefslogtreecommitdiff
path: root/appdirs.py
diff options
context:
space:
mode:
authortrevorld <trevor.l.davis@gmail.com>2013-08-19 12:19:43 -0700
committertrevorld <trevor.l.davis@gmail.com>2013-08-19 12:19:43 -0700
commita4a44e24caa25e2d5e9d77a129a1c148d8984f65 (patch)
tree3d260cee33df9dbaaaff5772bf395208deabdad6 /appdirs.py
parentd033b3dfaab7eb59384f1b73ae5ce6c75d43b684 (diff)
downloadappdirs-a4a44e24caa25e2d5e9d77a129a1c148d8984f65.tar.gz
Fix user_config_dir documentation.
Diffstat (limited to 'appdirs.py')
-rw-r--r--appdirs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/appdirs.py b/appdirs.py
index 1d24dd8..bb139f0 100644
--- a/appdirs.py
+++ b/appdirs.py
@@ -165,8 +165,8 @@ def user_config_dir(appname=None, appauthor=None, version=None, roaming=False):
Unix: ~/.config/<AppName> # or in $XDG_CONFIG_HOME, if defined
Win *: same as user_data_dir
- For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
- That means, by deafult "~/.local/share/<AppName>".
+ For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME.
+ That means, by deafult "~/.config/<AppName>".
"""
if sys.platform in [ "win32", "darwin" ]:
path = user_data_dir(appname, appauthor, None, roaming)