aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/ui/util/user.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2012-10-26 08:13:13 -0400
committerW. Trevor King <wking@tremily.us>2012-10-26 08:16:38 -0400
commitd9b9c4fdb13a0e0dc41184ea8d907bd5fa156e0d (patch)
tree4fa765a5b72b1a4c1c083e80706128620a3fc9f8 /libbe/ui/util/user.py
parent26aadf775cbafd14e98870f818aae078181080d8 (diff)
downloadbugseverywhere-d9b9c4fdb13a0e0dc41184ea8d907bd5fa156e0d.tar.gz
doc: update :mod: to :py:mod: for modern Sphinx.
Diffstat (limited to 'libbe/ui/util/user.py')
-rw-r--r--libbe/ui/util/user.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbe/ui/util/user.py b/libbe/ui/util/user.py
index 63d7d7f..386c187 100644
--- a/libbe/ui/util/user.py
+++ b/libbe/ui/util/user.py
@@ -19,11 +19,11 @@
"""Tools for getting, setting, creating, and parsing the user's ID.
IDs will look like 'John Doe <jdoe@example.com>'. Note that the
-:mod:`libbe.storage.vcs.arch <Arch VCS backend>` *enforces* IDs with
+:py:mod:`libbe.storage.vcs.arch <Arch VCS backend>` *enforces* IDs with
this format.
Do not confuse the user IDs discussed in this module, which refer to
-humans, with the "user IDs" discussed in :mod:`libbe.util.id`, which
+humans, with the "user IDs" discussed in :py:mod:`libbe.util.id`, which
are human-readable tags refering to objects.
"""
@@ -129,7 +129,7 @@ def get_user_id(storage=None):
2. `storage.get_user_id`, if that function is defined.
3. :py:func:`get_fallback_username` and :py:func:`get_fallback_email`.
- .. [#] See :mod:`libbe.storage.util.config`.
+ .. [#] See :py:mod:`libbe.storage.util.config`.
Notes
-----