aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/storage')
-rw-r--r--libbe/storage/__init__.py6
-rw-r--r--libbe/storage/http.py2
-rw-r--r--libbe/storage/util/properties.py2
-rw-r--r--libbe/storage/util/settings_object.py2
-rw-r--r--libbe/storage/vcs/base.py4
5 files changed, 8 insertions, 8 deletions
diff --git a/libbe/storage/__init__.py b/libbe/storage/__init__.py
index 0ed609d..9e26fa3 100644
--- a/libbe/storage/__init__.py
+++ b/libbe/storage/__init__.py
@@ -22,12 +22,12 @@ data.
Also define assorted implementations for the Storage classes:
-* :mod:`libbe.storage.vcs`
-* :mod:`libbe.storage.http`
+* :py:mod:`libbe.storage.vcs`
+* :py:mod:`libbe.storage.http`
Also define an assortment of storage-related tools and utilities:
-* :mod:`libbe.storage.util`
+* :py:mod:`libbe.storage.util`
"""
import base
diff --git a/libbe/storage/http.py b/libbe/storage/http.py
index 825e9f2..99912f3 100644
--- a/libbe/storage/http.py
+++ b/libbe/storage/http.py
@@ -21,7 +21,7 @@ implementation.
See Also
--------
-:mod:`libbe.command.serve_storage` : the associated server
+:py:mod:`libbe.command.serve_storage` : the associated server
"""
from __future__ import absolute_import
diff --git a/libbe/storage/util/properties.py b/libbe/storage/util/properties.py
index fd10a48..f8d3767 100644
--- a/libbe/storage/util/properties.py
+++ b/libbe/storage/util/properties.py
@@ -34,7 +34,7 @@ more information on decorators.
See Also
--------
-:mod:`libbe.storage.util.settings_object` : bundle properties into a convenient package
+:py:mod:`libbe.storage.util.settings_object` : bundle properties into a convenient package
"""
diff --git a/libbe/storage/util/settings_object.py b/libbe/storage/util/settings_object.py
index 92b4d95..9e3ace5 100644
--- a/libbe/storage/util/settings_object.py
+++ b/libbe/storage/util/settings_object.py
@@ -23,7 +23,7 @@ based property storage.
See Also
--------
-:mod:`libbe.storage.util.properties` : underlying property definitions
+:py:mod:`libbe.storage.util.properties` : underlying property definitions
"""
import libbe
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py
index 035c731..43d89cc 100644
--- a/libbe/storage/vcs/base.py
+++ b/libbe/storage/vcs/base.py
@@ -143,7 +143,7 @@ class CachedPathID (object):
.../.be/BUGDIR/bugs/BUG/comments/COMMENT
^-- root path
- See :mod:`libbe.util.id` for a discussion of ID formats.
+ See :py:mod:`libbe.util.id` for a discussion of ID formats.
Examples
--------
@@ -1069,7 +1069,7 @@ class VCS (libbe.storage.base.VersionedStorage):
See Also
--------
- :mod:`libbe.storage.util.upgrade`
+ :py:mod:`libbe.storage.util.upgrade`
"""
if path == None:
path = os.path.join(self.repo, '.be', 'version')