summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorEddy Petrișor <eddy.petrisor@gmail.com>2013-03-19 23:22:45 +0200
committerEddy Petrișor <eddy.petrisor@gmail.com>2013-03-19 23:22:45 +0200
commit3d4bf83cfc071de6c35917b08c6c630a78112d47 (patch)
tree16703e60c8703af584d1fc5c02c631948cc560f7 /README.rst
parentdc43e8c867f9332db4d07fc9b060cd32c72d909e (diff)
downloadappdirs-3d4bf83cfc071de6c35917b08c6c630a78112d47.tar.gz
update the README, too
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index c369162..2631379 100644
--- a/README.rst
+++ b/README.rst
@@ -82,7 +82,7 @@ On Linux::
'/home/trentm/.local/share/SuperApp
>>> site_data_dir(appname, appauthor)
'/usr/local/share/SuperApp'
- >>> site_data_dir(appname, appauthor, returnlist=True)
+ >>> site_data_dir(appname, appauthor, multipath=True)
'/usr/local/share/SuperApp:/usr/share/SuperApp'
>>> user_cache_dir(appname, appauthor)
'/home/trentm/.cache/SuperApp'
@@ -93,7 +93,7 @@ On Linux::
>>> site_config_dir(appname)
'/etc/xdg/SuperApp'
>>> os.environ['XDG_CONFIG_DIRS'] = '/etc:/usr/local/etc'
- >>> site_config_dir(appname, returnlist=True)
+ >>> site_config_dir(appname, multipath=True)
'/etc/SuperApp:/usr/local/etc/SuperApp'