diff options
author | W. Trevor King <wking@tremily.us> | 2012-10-26 08:42:14 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-10-26 08:42:14 -0400 |
commit | e186cfedadf43deb4b265d06be560bf5e5d81dc6 (patch) | |
tree | 3d5b8d6a2139932f5be63f98cf32d2302e664b98 /libbe/storage/util | |
parent | 3354bfda0d54f860f7c83db76dd32e395cd5d1ee (diff) | |
download | bugseverywhere-e186cfedadf43deb4b265d06be560bf5e5d81dc6.tar.gz |
doc: update :data: to :py:data: for modern Sphinx.
Diffstat (limited to 'libbe/storage/util')
-rw-r--r-- | libbe/storage/util/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/storage/util/config.py b/libbe/storage/util/config.py index 7e14b5d..4945b1f 100644 --- a/libbe/storage/util/config.py +++ b/libbe/storage/util/config.py @@ -67,7 +67,7 @@ def set_val(name, value, section="DEFAULT", encoding=None): section : str The section to store the name/value in. encoding : str - The config file's encoding, defaults to :data:`default_encoding`. + The config file's encoding, defaults to :py:data:`default_encoding`. """ if encoding == None: encoding = default_encoding @@ -97,7 +97,7 @@ def get_val(name, section="DEFAULT", default=None, encoding=None): default : The value to return if `name` is not set. encoding : str - The config file's encoding, defaults to :data:`default_encoding`. + The config file's encoding, defaults to :py:data:`default_encoding`. Examples -------- |