summaryrefslogtreecommitdiff
path: root/appdirs.py
diff options
context:
space:
mode:
authorJeff Rouse <jr@its.to>2017-03-05 14:32:01 -0800
committerGitHub <noreply@github.com>2017-03-05 14:32:01 -0800
commit50a583bc1fdd7a2d3ce8c2b1679691766bc51bc8 (patch)
tree882b54dc42d4a0faa5986f627c525a8f3f4a5f8f /appdirs.py
parent1b49f2af8035965ccae8dfd0848fb00e46c0844e (diff)
parent8af4d38b6977d4596fbb097054109a2cf64a1ad9 (diff)
downloadappdirs-50a583bc1fdd7a2d3ce8c2b1679691766bc51bc8.tar.gz
Merge pull request #76 from yan12125/fix-py36-invalid-escape-sequence
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 348c62e..b9d264f 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.