1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Use : instead of = in `--format-options

This commit is contained in:
Jakub Roztocil
2020-05-28 12:26:06 +02:00
parent aae596d472
commit caeef2fb7c
6 changed files with 19 additions and 18 deletions

View File

@@ -85,10 +85,10 @@ PRETTY_STDOUT_TTY_ONLY = object()
DEFAULT_FORMAT_OPTIONS = [
'headers.sort=true',
'json.format=true',
'json.indent=4',
'json.sort_keys=true',
'headers.sort:true',
'json.format:true',
'json.indent:4',
'json.sort_keys:true',
]