allow lower caps PV names

This commit is contained in:
2021-05-28 23:30:47 +02:00
parent f523de77eb
commit 04a1cccb7c
+1 -1
View File
@@ -24,7 +24,7 @@ class Director:
if not new: return
self.ti_add_pv.value = ""
print(f"CB Add PV: attribute \"{attr}\" changed from \"{old}\" to \"{new}\"")
new = new.replace(",", " ").split()
new = new.replace(",", " ").upper().split()
new = reversed(new)
self.add_pvs(*new)