Skip to content

Commit

Permalink
Accounting for missing tfin
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelrn committed Nov 18, 2024
1 parent e0add15 commit 16bfedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panos/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5157,7 +5157,7 @@ def _parse_job_results(self, show_job_xml, get_devices=True):
"name": device["devicename"],
"result": device["result"],
"starttime": device["tstart"],
"endtime": device["tfin"],
"endtime": device.get("tfin"),
}
# Errors and warnings might not have a full structure. If it is just a string, then
# a TypeError will be produced, so in that case, just grab the string.
Expand Down

0 comments on commit 16bfedf

Please sign in to comment.