FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit fc936201 authored by Dr T. Mona's avatar Dr T. Mona
Browse files

Convert empty values to none or 0.

parent 59674632
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ add_filters_to_sublogger(logger)
# Cases to convert WRT categories to expected short name category or value
cases_incident = {
'':'none',
'N':'none',
'L':'low',
'M':'medium',
......@@ -29,6 +30,7 @@ cases_incident = {
}
cases_severity = {
'':0,
'N':0,
'L':10,
'M':30,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment