summaryrefslogtreecommitdiff
path: root/appdirs.py
diff options
context:
space:
mode:
authorSridhar Ratnakumar <github@srid.name>2014-03-24 21:37:53 -0700
committerSridhar Ratnakumar <github@srid.name>2014-03-24 21:37:53 -0700
commit2727a1b0444405a8728052512f02f26884528d64 (patch)
treea5ebf8abda6969cf84f0cc2e4e843138268f26ee /appdirs.py
parentb6cccc9f92deceb1ce8be5d46c41742b019da410 (diff)
parenta4a44e24caa25e2d5e9d77a129a1c148d8984f65 (diff)
downloadappdirs-2727a1b0444405a8728052512f02f26884528d64.tar.gz
Merge pull request #31 from trevorld/patch-1
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 116e2a2..4221945 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)