Don't error on type changes, cast to string and compare (#52505)
This commit is contained in:
parent
6e739b12a6
commit
60255efc32
1 changed files with 1 additions and 1 deletions
|
@ -1404,7 +1404,7 @@ class ModuleValidator(Validator):
|
|||
if existing_version:
|
||||
break
|
||||
current_version = details.get('version_added')
|
||||
if current_version != existing_version:
|
||||
if str(current_version) != str(existing_version):
|
||||
self.reporter.error(
|
||||
path=self.object_path,
|
||||
code=309,
|
||||
|
|
Loading…
Reference in a new issue