summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>2016-07-13 08:59:29 +0900
committerKATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>2016-07-13 09:00:24 +0900
commitb660d3247a5b6c80c348d8b042590b0ac187d979 (patch)
tree2242cc13f738ecffa33569fe4cb76918e0e7e2c4
parentf2c02830f67b443d04ffdf466cf8603745fbb301 (diff)
downloadpython-glanceclient-b660d3247a5b6c80c348d8b042590b0ac187d979.tar.gz
Update docs URL
Change-Id: Id8b1b97a85534c4398b3c49648c6e2f2df3ee20e Related:-Bug: #1602266
-rw-r--r--glanceclient/tests/unit/v2/fixtures.py4
-rw-r--r--glanceclient/v2/image_schema.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/glanceclient/tests/unit/v2/fixtures.py b/glanceclient/tests/unit/v2/fixtures.py
index 703d43b..6dbaf4c 100644
--- a/glanceclient/tests/unit/v2/fixtures.py
+++ b/glanceclient/tests/unit/v2/fixtures.py
@@ -90,8 +90,8 @@ schema_fixture = {
"properties": {
"architecture": {
"description": "Operating system architecture as specified in "
- "http://docs.openstack.org/trunk/openstack-compute"
- "/admin/content/adding-images.html",
+ "http://docs.openstack.org/user-guide/common"
+ "/cli_manage_images.html",
"is_base": "false",
"type": "string"
},
diff --git a/glanceclient/v2/image_schema.py b/glanceclient/v2/image_schema.py
index 1e1d3bf..513f790 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/trunk/openstack-compute/admin/content/adding-images.html" # noqa
+_doc_url = "http://docs.openstack.org/user-guide/common/cli_manage_images.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