-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
document user_config_dir in README #153
Conversation
@@ -61,6 +61,8 @@ On macOS:: | |||
'/Users/trentm/Library/Caches/SuperApp' | |||
>>> user_log_dir(appname, appauthor) | |||
'/Users/trentm/Library/Logs/SuperApp' | |||
>>> user_config_dir(appname) | |||
'/Library/Preferences/SuperApp' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'/Library/Preferences/SuperApp' | |
'/Users/trentm/Library/Application Support/SuperApp' |
@@ -61,6 +61,8 @@ On macOS:: | |||
'/Users/trentm/Library/Caches/SuperApp' | |||
>>> user_log_dir(appname, appauthor) | |||
'/Users/trentm/Library/Logs/SuperApp' | |||
>>> user_config_dir(appname) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
>>> user_config_dir(appname) | |
>>> user_config_dir(appname, appauthor) |
Awesome. I can't test the Windows ones but they look good to me (the code mentions they will be the same as the data dir). I can however correct the Mac ones. |
@harrybiddle I was confused by your observed behavior, so I looked into it a bit more and it turns out that OSX has changed since the last release 😖 I believe that my original path is actually correct for current master! I guess we're gonna need a maintainer to figure this out for us... @zoofood are you the current maintainer? 🤔 |
Oh, dear :( |
closes #149
https://github.com/ActiveState/appdirs/blob/master/appdirs.py#L186-L189