diff --git a/FofbTool/Operation.py b/FofbTool/Operation.py
index 7ee96f744f47a88a649485cd46c66ce0f4807e5c..11ca7494afd07577a80a35ee19678a8c106c75ca 100644
--- a/FofbTool/Operation.py
+++ b/FofbTool/Operation.py
@@ -556,17 +556,15 @@ def electron_stop_com(bpmlist):
 #    OPERATIONS FOR LBP and Electron SYNCHRONIZATION
 ###################################################################################################
 
-def sync_bpm(bpmlist, bpmidlist, lbpevrx, tlocal, tcentral):
+def sync_bpm(bpmidlist, lbpevrx, tlocal, tcentral):
     """
     Synchronize all BPM electronics, Electron and Brillance Plus.
     This will use the timing system (central and local board).
 
     PARAMETERS:
     -----------
-    bpmlist: list
-        list of Libera Electron tango path
-    bpmidlist: list
-        list of ID to put on Libera Electron
+    bpmidlist: list of tupme
+        list of tuple (ID, tangopath) to put on Libera Electron
     lbpevrx: list
         list of LBP Evrx tanfo path
     tlocal: list
@@ -576,6 +574,7 @@ def sync_bpm(bpmlist, bpmidlist, lbpevrx, tlocal, tcentral):
 
     """
     EVN=240 # Event number
+    bpmlist = [b[1] for b in bpmidlist]
 
     # ---------------------------------------------------------------------------------------------------------------
     # Init BPMs, stop first and put for each the ID number
diff --git a/FofbTool/Utils.py b/FofbTool/Utils.py
index c43e87d2f7b28d16aea9183f908043adbcacb612..372d2c053e9ce4430d922529c40f7f2cdd0d8f57 100644
--- a/FofbTool/Utils.py
+++ b/FofbTool/Utils.py
@@ -460,7 +460,6 @@ def sync_all_bpm():
 
     db = tango.Database()
 
-    bpmlist = [n.split(':')[2] for n in db.get_property("FOFB", "bpmlist")['bpmlist'] if ":LIBERA:" in n]
     bpmidlist = [(int(n.split(':')[0]), n.split(':')[2]) for n in db.get_property("FOFB", "bpmlist")['bpmlist'] if 'LIBERA' in n]
 
     tlocal = tango.Group('tlocal')
@@ -472,5 +471,5 @@ def sync_all_bpm():
 
     tcentral = tango.DeviceProxy(config["tangopath"]["timing-central"])
 
-    FofbTool.Operation.sync_bpm(bpmlist, bpmidlist, lbpevrx, tlocal, tcentral)
+    FofbTool.Operation.sync_bpm(bpmidlist, lbpevrx, tlocal, tcentral)