Skip to content

Commit a32074c

Browse files
committed
SSB schedules cannot have dots
1 parent c7fa13a commit a32074c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WFM_Input_DashBoard/WFMonDBShort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def jsonDict(json_name,currTime,date,hour,key):
375375
sumRunning += running[entry][type]
376376

377377
json_entry = dict()
378-
json_entry[key] = str(entry)
378+
json_entry[key] = str(entry).replace(".","_")
379379
json_entry["Pending"] = str(int(sumPending))
380380
json_entry["TimeDate"] = str(currTime.strip())
381381
json_entry["Running"] = str(int(sumRunning))

0 commit comments

Comments
 (0)