From 4a24cd25b9945bff50d3599516073d794f1d3068 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sat, 1 Dec 2012 15:20:14 +0100 Subject: [PATCH] Clean up. --- README.rst | 4 ++-- httpie/models.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 42cd97f1..c1d8c19d 100644 --- a/README.rst +++ b/README.rst @@ -843,8 +843,7 @@ Sessions ======== By default, every request is completely independent of the previous ones. - -HTTPie supports persistent sessions, where custom headers, authorization, +HTTPie also supports persistent sessions, where custom headers, authorization, and cookies (manually specified or sent by the server) persist between requests to the same host. @@ -895,6 +894,7 @@ following keys: ``default_options`` An ``Array`` (by default empty) of options that should be applied to every request. + For instance, you can use this option to change the default style and output options: ``"default_options": ["--style=fruity", "--body"]`` diff --git a/httpie/models.py b/httpie/models.py index 7bc359ef..d57da8f2 100644 --- a/httpie/models.py +++ b/httpie/models.py @@ -13,7 +13,6 @@ class Environment(object): """ - #noinspection PyUnresolvedReferences is_windows = is_windows progname = os.path.basename(sys.argv[0])