From de8361627c4f3fa2a1f8dd164ef80c5f0a6a17f6 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Fri, 10 Jan 2014 21:11:04 -0600 Subject: [PATCH] virStream.sendAll() fix raising an undeclared var The exception is raised from the variable 'e', which was undeclared in this context. Used code that is compatible with old and new Python versions. --- libvirt-override-virStream.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libvirt-override-virStream.py b/libvirt-override-virStream.py index 189d062..cd44314 100644 --- a/libvirt-override-virStream.py +++ b/libvirt-override-virStream.py @@ -76,6 +76,7 @@ try: got = handler(self, 1024*64, opaque) except: + e = sys.exc_info()[1] try: self.abort() except: