← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~jugmac00/launchpad:fix-doc-location-propertycache into launchpad:master

 

Jürgen Gmach has proposed merging ~jugmac00/launchpad:fix-doc-location-propertycache into launchpad:master.

Commit message:
Fix location of `propertycache.rst`

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~jugmac00/launchpad/+git/launchpad/+merge/447105
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/launchpad:fix-doc-location-propertycache into launchpad:master.
diff --git a/lib/lp/services/propertycache.py b/lib/lp/services/propertycache.py
index 5395225..a2bd711 100644
--- a/lib/lp/services/propertycache.py
+++ b/lib/lp/services/propertycache.py
@@ -128,7 +128,7 @@ class CachedProperty:
 def cachedproperty(name_or_function):
     """Decorator to create a cached property.
 
-    See `doc/propertycache.rst` for usage.
+    See `lib/lp/services/doc/propertycache.rst` for usage.
     """
     if isinstance(name_or_function, str):
         name = name_or_function