fix: Added missing param to the id validation function

master
chrisr3d 2019-10-14 12:34:31 +02:00
parent adbaec1942
commit f89940ec0e
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ class ReferenceProperty(Property):
else:
raise ValueError("An invalid type-specifying prefix '%s' was specified for this property" % (possible_prefix, value))
interoperability = self.interoperability if hasattr(self, 'interoperability') and self.interoperability else False
_validate_id(value, self.spec_version, required_prefix)
_validate_id(value, self.spec_version, required_prefix, interoperability)
return value