Browse Source

Deleted debug messages

Yann Weber 8 years ago
parent
commit
4acd6f8fbe

+ 0
- 1
lodel/leapi/datahandlers/base_classes.py View File

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

+ 0
- 1
lodel/leapi/datahandlers/references.py View File

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

+ 0
- 1
lodel/settings/validator.py View File

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

Loading…
Cancel
Save