From 8af4d38b6977d4596fbb097054109a2cf64a1ad9 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Fri, 16 Sep 2016 23:24:37 +0800 Subject: Fix DeprecationWarning in Python 3.6 --- appdirs.py | 4 ++-- 1 file 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. -- cgit v1.2.1