Update net_base.py (#416)

Fix Bug in checking for ZLIVEUSAGE.TIMESTAMP
This commit is contained in:
Matthias
2023-11-15 23:27:51 +01:00
committed by GitHub
parent 4b4cad46ba
commit 2098201024

View File

@@ -92,7 +92,7 @@ class NetBase(IOSExtraction):
"wwan_out": row[8],
"live_id": row[9],
"live_proc_id": row[10],
"live_isodate": live_timestamp if row[10] else first_isodate,
"live_isodate": live_timestamp if row[11] else first_isodate,
}
)