summaryrefslogtreecommitdiff
path: root/glanceclient/v2
diff options
context:
space:
mode:
authorBrian Rosmaita <rosmaita.fossdev@gmail.com>2018-03-21 22:26:27 -0400
committerBrian Rosmaita <rosmaita.fossdev@gmail.com>2018-03-21 22:30:29 -0400
commit0661da1ee903da930b326daaa7d5deb5707d7ca3 (patch)
tree717f2ebdca6a71fe25ae5c65944869fcdc05c6e1 /glanceclient/v2
parentaedabec9e46e80266cdefb315f112a30927e216a (diff)
downloadpython-glanceclient-0661da1ee903da930b326daaa7d5deb5707d7ca3.tar.gz
Update properties URL
Help text for some image properties (architecture, os_distro) is pulled from the glanceclient's local version of the image schema. The URL for those property definitions has gotten out of sync with Glance. This patch updates the URL to be the same as that given in the Glance image-schema response. Change-Id: I4e46e78525fe5c00e031a98c47cacc17e5693d53 Closes-bug: #1757918
Diffstat (limited to 'glanceclient/v2')
-rw-r--r--glanceclient/v2/image_schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/v2/image_schema.py b/glanceclient/v2/image_schema.py
index d4fdd69..922e026 100644
--- a/glanceclient/v2/image_schema.py
+++ b/glanceclient/v2/image_schema.py
@@ -13,7 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
-_doc_url = "http://docs.openstack.org/user-guide/common/cli-manage-images.html" # noqa
+_doc_url = "https://docs.openstack.org/python-glanceclient/latest/cli/property-keys.html" # noqa
# NOTE(flaper87): Keep a copy of the current default schema so that
# we can react on cases where there's no connection to an OpenStack
# deployment. See #1481729