Check for astra misspelling

Add common missspellings, fix also the one issue it caught.

Change-Id: Iaa6a94e3f1e3bff5f4d2986c4926078bd9090b42
This commit is contained in:
Andreas Jaeger 2016-02-11 16:32:45 +01:00
parent db6e21ac9b
commit 03d0680e41
2 changed files with 3 additions and 2 deletions

View File

@ -1264,7 +1264,7 @@
- project: openstack/fuel-plugin-astra
groups:
- fuel-plugins
description: Fuel plugin for Astra Network Service with MOS integration
description: Fuel plugin for Astara Network Service with MOS integration
docimpact-group: fuel-plugins
- project: openstack/fuel-plugin-availability-zones
groups:

View File

@ -100,7 +100,8 @@ def main():
badwords = (
# (words), what_words_should_be
(('openstack', 'Openstack', 'Open Stack'), 'OpenStack'),
(('Devstack', 'devstack'), 'DevStack')
(('Devstack', 'devstack'), 'DevStack'),
(('astor', 'Astor', 'astra', 'Astra', 'astara'), 'Astara')
)
if description:
for words, should_be in badwords: