mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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
|
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(
|
self.reporter.error(
|
||||||
path=self.object_path,
|
path=self.object_path,
|
||||||
code=307,
|
code=307,
|
||||||
|
|
Loading…
Reference in a new issue