Skip to content

Commit

Permalink
Merge pull request #76 from yan12125/fix-py36-invalid-escape-sequence
Browse files Browse the repository at this point in the history
Fix DeprecationWarning in Python 3.6
  • Loading branch information
zoofood committed Mar 5, 2017
2 parents 1b49f2a + 8af4d38 commit 50a583b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appdirs.py
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 50a583b

Please sign in to comment.