Commit 4a5428af authored by Roque Porchetto's avatar Roque Porchetto

erp5_wendelin_telecom_ingestion: fix in ids - spaces are replaced

parent 8a89e89d
......@@ -20,7 +20,7 @@ try:
specialise_reference = movement_dict.get('specialise_reference', None)
extension = movement_dict.get('extension', None)
dataset_reference = movement_dict.get('aggregate_data_set_reference', None)
data_ingestion_id = '%s_%s_%s' %(specialise_reference, data_ingestion_reference.replace("/","_"), now_string)
data_ingestion_id = '%s_%s_%s' %(specialise_reference, data_ingestion_reference.replace("/","_").replace(" ","_"), now_string)
context.logEntry("Data Ingestion ID: %s" % reference)
# search for applicable data ingestion
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment