Don't worry with type changes, just compare strings (#52827)
This commit is contained in:
parent
f6c2104d79
commit
df5b8f65ca
1 changed files with 1 additions and 1 deletions
|
@ -1098,7 +1098,7 @@ class ModuleValidator(Validator):
|
|||
)
|
||||
return
|
||||
|
||||
if existing_doc and version_added_raw != existing_doc.get('version_added'):
|
||||
if existing_doc and str(version_added_raw) != str(existing_doc.get('version_added')):
|
||||
self.reporter.error(
|
||||
path=self.object_path,
|
||||
code=307,
|
||||
|
|
Loading…
Reference in a new issue