diff options
| -rw-r--r-- | raven/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raven/base.py b/raven/base.py index 4206297..8b74e2e 100644 --- a/raven/base.py +++ b/raven/base.py @@ -161,7 +161,7 @@ class Client(object): msg = 'Missing configuration for client. Please see documentation.' raise TypeError(msg) - if 'timeout' in kwargs: + if kwargs.get('timeout') is not None: warnings.warn('The ``timeout`` option no longer does anything. Pass the option to your transport instead.') self.servers = servers |
