From b4a4f38ccecba498085d3d0bb38463aac3b79419 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 21 Jun 2011 21:59:57 -0400 Subject: [PATCH] verbose output stream support --- requests/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/config.py b/requests/config.py index 63d3fa99..0878da92 100644 --- a/requests/config.py +++ b/requests/config.py @@ -12,7 +12,7 @@ class Settings(object): _singleton = {} # attributes with defaults - __attrs__ = ('timeout',) + __attrs__ = ('timeout', 'verbose') def __init__(self, **kwargs): super(Settings, self).__init__()