From c2567ae1217227e88e54dd2e41e3472ad014989c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 22 Mar 2012 21:40:00 -0400 Subject: [PATCH] In make_request, AssuanClient has no attribute 'stop'. --- pyassuan/client.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyassuan/client.py b/pyassuan/client.py index 0be9488..8bdd786 100644 --- a/pyassuan/client.py +++ b/pyassuan/client.py @@ -68,8 +68,7 @@ class AssuanClient (object): try: self.output.flush() except IOError: - if not self.stop: - raise + raise responses = list(self.responses()) if responses[-1].type == 'ERR': eresponse = responses[-1] -- 2.26.2