1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2026-03-14 15:22:02 +01:00

Deleted debug messages

This commit is contained in:
Yann 2016-08-29 09:14:41 +02:00
commit 4acd6f8fbe
3 changed files with 0 additions and 3 deletions

View file

@ -279,7 +279,6 @@ class Reference(DataHandler):
#@return tuple(value, exception)
#@todo implement the check when we have LeObject to check value
def check_data_value(self, value):
print('REFERENCE check_data value')
return super().check_data_value(value)

View file

@ -21,7 +21,6 @@ class List(MultipleRef):
# @param value *
# @return tuple(value, exception)
def _check_data_value(self, value):
print("LIST check_datavalue")
if isinstance(value, list) or isinstance(value, str):
val, expt = super()._check_data_value(value)
else:

View file

@ -260,7 +260,6 @@ def plugin_validator(value, ptype = None):
msg = "No plugin named %s found"
msg %= value
raise SettingsValidationError(msg)
print("HOOKED CHECK : ", plugin._type_conf_name.lower(), ptype.lower())
if plugin._type_conf_name.lower() != ptype.lower():
msg = "A plugin of type '%s' was expected but found a plugin \
named '%s' that is a '%s' plugin"