validate-modules improve empty version_added handling (#53177)

* Improve empty version_added handling

* Remove unrelated ignore
This commit is contained in:
Matt Martz 2019-03-01 11:56:33 -06:00 committed by GitHub
commit f0a63e783d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1370,7 +1370,8 @@ class ModuleValidator(Validator):
return return
try: try:
mod_version_added = StrictVersion( mod_version_added = StrictVersion()
mod_version_added.parse(
str(existing_doc.get('version_added', '0.0')) str(existing_doc.get('version_added', '0.0'))
) )
except ValueError: except ValueError:
@ -1415,11 +1416,11 @@ class ModuleValidator(Validator):
continue continue
try: try:
version_added = StrictVersion( version_added = StrictVersion()
version_added.parse(
str(details.get('version_added', '0.0')) str(details.get('version_added', '0.0'))
) )
version_added.version except ValueError:
except (ValueError, AttributeError):
version_added = details.get('version_added', '0.0') version_added = details.get('version_added', '0.0')
self.reporter.error( self.reporter.error(
path=self.object_path, path=self.object_path,