Skip to content

Commit 4d89024

Browse files
author
artiedaj
committed
Merge pull request #28 from lucacopa/fix_empty_space
Fixes empty space in scheduler name
2 parents c683f91 + 96a4ed1 commit 4d89024

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).replace(".","_")
378+
json_entry[key] = str(entry).replace(".","_").strip()
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)