diff options
| author | Victor Sergeyev <vsergeyev@mirantis.com> | 2013-11-25 18:21:40 +0200 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2014-03-28 10:58:14 +0400 |
| commit | 2b2f0a96b44779c5b98c851c55d70ec5e46e41f9 (patch) | |
| tree | 3f8c8cfca3d6899e4355a80668b605adb4abc5e4 /doc/modules | |
| parent | cfdd9a922cffc2478a52e4b5b9a4dead5fe580c4 (diff) | |
| download | eventlet-2b2f0a96b44779c5b98c851c55d70ec5e46e41f9.tar.gz | |
python3 compat fixes
https://github.com/eventlet/eventlet/pull/59
Diffstat (limited to 'doc/modules')
| -rw-r--r-- | doc/modules/timeout.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/modules/timeout.rst b/doc/modules/timeout.rst index ecd950b..e6c57fe 100644 --- a/doc/modules/timeout.rst +++ b/doc/modules/timeout.rst @@ -54,7 +54,7 @@ timeout = Timeout(1) try: ... - except Timeout, t: + except Timeout as t: if t is not timeout: raise # not my timeout |
