Removed debug prints + added TODO(fsiddi)

This commit is contained in:
Sybren A. Stüvel 2018-07-13 17:04:23 +02:00
parent 61278730c6
commit 559e212c55

View File

@ -129,10 +129,8 @@ class ValidateCustomFields(Validator):
if val: if val:
# This ensures the modifications made by v's coercion rules are # This ensures the modifications made by v's coercion rules are
# visible to this validator's output. # visible to this validator's output.
#self.current[field] = v.current # TODO(fsiddi): this no longer works due to Cerberus internal changes.
print('*********') # self.current[field] = v.current
print(valid_properties)
#print(v.current)
return True return True
log.warning('Error validating properties for node %s: %s', self.document, v.errors) log.warning('Error validating properties for node %s: %s', self.document, v.errors)