From 58f74fe14a141db3b12704c2999abe31c36a28e2 Mon Sep 17 00:00:00 2001 From: Praful Mathur Date: Fri, 2 Mar 2012 17:00:20 -0500 Subject: [PATCH] Force pretty printing (ignore last commit; stupid undo mistake) --- httpie/httpie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpie/httpie.py b/httpie/httpie.py index 8030899c..3deff5ff 100755 --- a/httpie/httpie.py +++ b/httpie/httpie.py @@ -71,7 +71,7 @@ parser.add_argument('--style', '-s', dest='style', default='solarized', metavar= help='Output coloring style, one of %s. Defaults to solarized.' % ', '.join(sorted(pretty.AVAILABLE_STYLES))) parser.add_argument('--pretty', '-p', help='Force pretty print.', - dest='force_pretty', action='store_false', default=False) + dest='force_pretty', action='store_true', default=False) # ``requests.request`` keyword arguments. parser.add_argument('--auth', '-a', help='username:password',