Fixed warning when building keystone docs

When testing keystone docs for the upcoming pbr release which
fixes warnerror, this warning was coming up:

keystone/keystone/common/resource_options.py:docstring of
keystone.common.resource_options.resource_options_ref_to_mapper:6:
WARNING: Inline literal start-string without end-string.

This change adds the missing '`' in the docstring and the
warning no longer appears.

Change-Id: I27073bcc4a0af69c906b12696a9949a103336aba
This commit is contained in:
Gage Hugo 2017-02-08 11:24:10 -06:00
parent 029476272f
commit 94ed3ae6e5
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def resource_options_ref_to_mapper(ref, option_class):
``_resource_option_mapper`` attribute.
The model must have the resource option registry located in the
``resource_options_registry` attribute.
``resource_options_registry`` attribute.
The option dict with key(opt_id), value(opt_value) will be pulled from
``ref._resource_options``.