Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed May 10, 2024
1 parent 5171378 commit 6af82fb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
jc changelog

20240502 v1.25.3
20240510 v1.25.3
- Add `battery_percentage` field to `bluetoothctl` parser output
- Fix `pci-ids` parser to correctly handle multiple subdevices
- Fix `pip-show` parser to handle multi-line fields with a beginning blank line
- Fix `top` parsers to quiet uptime info parsing
- Fix `traceroute` parser to correctly handle hops with multiple IPs
- Fix `zpool-status` parser for config items lacking data values
- Optimize some tests by removing timezone settings and using quiet=True
- Documentation updates

Expand Down
10 changes: 5 additions & 5 deletions docs/parsers/zpool_status.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Schema:
"config": [
{
"name": string,
"state": string,
"read": integer,
"write": integer,
"checksum": integer,
"errors": string,
"state": string/null,
"read": integer/null,
"write": integer/null,
"checksum": integer/null,
"errors": string/null,
}
],
"errors": string
Expand Down
10 changes: 5 additions & 5 deletions jc/parsers/zpool_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"config": [
{
"name": string,
"state": string,
"read": integer,
"write": integer,
"checksum": integer,
"errors": string,
"state": string/null,
"read": integer/null,
"write": integer/null,
"checksum": integer/null,
"errors": string/null,
}
],
"errors": string
Expand Down

0 comments on commit 6af82fb

Please sign in to comment.