diff --git a/product/ERP5SyncML/Conduit/ERP5Conduit.py b/product/ERP5SyncML/Conduit/ERP5Conduit.py index af5d34ae01f18cd7a63a520d6f0b5e48e8aee60a..5ac9d7f0cc0caa14440a56b1e63096ebea2ba519 100644 --- a/product/ERP5SyncML/Conduit/ERP5Conduit.py +++ b/product/ERP5SyncML/Conduit/ERP5Conduit.py @@ -796,13 +796,6 @@ class ERP5Conduit(XMLSyncUtilsMixin): data = DateTime(data) elif data_type == INT_TYPE : data = int(data) - elif data_type == BOOLEAN_TYPE: - if data == 'False': - data = False - elif data == 'True': - data = True - else: - raise NotImplementedError return data