summaryrefslogtreecommitdiff
path: root/appdirs.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-09-16 23:24:37 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-09-16 23:24:37 +0800
commit8af4d38b6977d4596fbb097054109a2cf64a1ad9 (patch)
tree3fa24939b052ac5b892ad42c05a2268ded351125 /appdirs.py
parentc3f35455ee00e4531469afb6c156533ea29ac235 (diff)
downloadappdirs-8af4d38b6977d4596fbb097054109a2cf64a1ad9.tar.gz
Fix DeprecationWarning in Python 3.6
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 3be0f7f..f5f227b 100644
--- a/appdirs.py
+++ b/appdirs.py
@@ -98,7 +98,7 @@ def user_data_dir(appname=None, appauthor=None, version=None, roaming=False):
def site_data_dir(appname=None, appauthor=None, version=None, multipath=False):
- """Return full path to the user-shared data dir for this application.
+ r"""Return full path to the user-shared data dir for this application.
"appname" is the name of application.
If None, just the system directory is returned.
@@ -204,7 +204,7 @@ def user_config_dir(appname=None, appauthor=None, version=None, roaming=False):
def site_config_dir(appname=None, appauthor=None, version=None, multipath=False):
- """Return full path to the user-shared data dir for this application.
+ r"""Return full path to the user-shared data dir for this application.
"appname" is the name of application.
If None, just the system directory is returned.