From 23881a197b5dec1166a4f6c47d0983a257817c41 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 7 Jan 2014 17:02:15 -0800 Subject: Fix the fix I just committed. :-( --- asyncio/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asyncio/streams.py') diff --git a/asyncio/streams.py b/asyncio/streams.py index 13828f2..7eda5f6 100644 --- a/asyncio/streams.py +++ b/asyncio/streams.py @@ -199,7 +199,7 @@ class StreamWriter: drained and the protocol is resumed. """ if self._reader._exception is not None: - raise self._exception._exception + raise self._reader._exception if self._transport._conn_lost: # Uses private variable. raise ConnectionResetError('Connection lost') if not self._protocol._paused: -- cgit v1.2.1