From d70bdeb8656eb9a268b711c816ae64af3fe0539a Mon Sep 17 00:00:00 2001 From: Samuel de Medeiros Queiroz Date: Tue, 25 Sep 2018 10:57:55 -0300 Subject: [PATCH] Fix location region field in docs The docs said a location object had a 'region' field, however the field name is 'region_name'. https://github.com/openstack/openstacksdk/blob/4efbf96192805d336f3b013f37bb933b21dab2cc/openstack/cloud/openstackcloud.py#L716 Story: #2003871 Task: #26709 Change-Id: I0271a5a738e998032d67c2c5c6152c8583f41bd7 --- doc/source/user/model.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user/model.rst b/doc/source/user/model.rst index ce857d315..62fa748ef 100644 --- a/doc/source/user/model.rst +++ b/doc/source/user/model.rst @@ -56,7 +56,7 @@ If all of the project information is None, then Location = dict( cloud=str(), - region=str(), + region_name=str(), zone=str() or None, project=dict( id=str() or None,