]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 10 Jul 2023 19:38:29 +0000 (21:38 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 10 Jul 2023 19:38:29 +0000 (21:38 +0200)
- alias severity level during fetch_oliphant, too

fba/commands.py

index 4f7e6881e939c55285871a8fc2ed0f3bb4074578..e42acf4e30f7ae7c93673e40143cc97a18ed0c12 100644 (file)
@@ -1001,9 +1001,9 @@ def fetch_oliphant(args: argparse.Namespace) -> int:
                 continue
 
             if "#severity" in row:
-                severity = row["#severity"]
+                severity = utils.alias_block_level(row["#severity"])
             elif "severity" in row:
-                severity = row["severity"]
+                severity = utils.alias_block_level(row["severity"])
             else:
                 logger.debug("row='%s' does not contain severity column", row)
                 continue