From 8b3f8bff97af803ab06f80da0baf926d47ca33ce Mon Sep 17 00:00:00 2001 From: shangxiaobj Date: Sun, 13 Aug 2017 20:31:41 -0700 Subject: [PATCH] Update and replace http with https for doc links in distil 1) Update doc links according to OpenStack document migration 2) Use https instead of http for docs links Change-Id: Id62f97ed4c4f853dcd1e800c92f48c891a3ea1f4 --- HACKING.rst | 2 +- distil/common/cache.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HACKING.rst b/HACKING.rst index ac93b6a..5256afe 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -2,7 +2,7 @@ Distil Style Commandments ========================== - Step 1: Read the OpenStack Style Commandments - http://docs.openstack.org/developer/hacking/ + https://docs.openstack.org/hacking/latest/ - Step 2: Read on Distil Specific Commandments diff --git a/distil/common/cache.py b/distil/common/cache.py index 78c55c5..8f5e84c 100644 --- a/distil/common/cache.py +++ b/distil/common/cache.py @@ -43,7 +43,7 @@ def _keygen(*args, **kwargs): # TODO(flwang): We're recreating wheels, because the way documenting on -# http://docs.openstack.org/developer/oslo.cache/usage.html doesn't work for +# https://docs.openstack.org/oslo.cache/latest/user/usage.html doesn't work for # us. We will revisit this to replace this decorator when it's sorted out. def memoize(function): @wraps(function)