Fix doc issue in plugin.py

The documentation for `register_opts` in plugin.py includes two
examples, and 2nd one is ok but the 1st one is not.

Change-Id: Iecc9a2442b430ef31885f9455b8e43a4470f0e2d
This commit is contained in:
Andrea Frittoli (andreaf) 2017-11-05 21:41:33 +11:00
parent 1235b81b9c
commit 17e96e1bf5
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class TempestPlugin(object):
conf.register_opt(my_config.service_option,
group='service_available')
conf.register_group(my_config.my_service_group)
conf.register_opts(my_config.MyService +
conf.register_opts(my_config.MyServiceGroup,
my_config.my_service_group)
conf.register_group(my_config.my_service_feature_group)