Skip to content

Commit

Permalink
Update firewall.py
Browse files Browse the repository at this point in the history
fixing format issue
  • Loading branch information
keithcampbelljr authored Feb 8, 2024
1 parent e177ef7 commit 0c3d1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panos/firewall.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def show_system_resources(self):
"mem_total": int(match.group(3)),
"mem_free": int(match.group(4)),
"mem_used": int(match.group(5)),
"mem_buffer": int(match.group(6))
"mem_buffer": int(match.group(6)),
}
else:
raise err.PanDeviceError(
Expand Down

0 comments on commit 0c3d1d0

Please sign in to comment.