Fix group name when generating tempest.conf

The module name is aws_config, not config. This fixes:

AttributeError: 'module' object has no attribute 'AWSGroup

Depends-On: Ifacd51c0e6f8650c20f6b3d1942a795a13c1245e
Change-Id: I52b8380bd13534448af71f1305a8a740c0fa85da
This commit is contained in:
Thomas Bechtold 2016-08-19 14:17:03 +02:00
parent 78b562f2ab
commit 368eaba3fc
1 changed files with 1 additions and 1 deletions

View File

@ -35,4 +35,4 @@ class AWSTempestPlugin(plugins.TempestPlugin):
aws_config.AWSGroup)
def get_opt_lists(self):
return [(aws_config.aws_group.name, config.AWSGroup)]
return [(aws_config.aws_group.name, aws_config.AWSGroup)]