Drop the unused exception variable in setup.py. This has the benefit
of dropping syntax that is not valid with Python 3.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 561157c..24d4cf2 100755
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@ try:
spawn([pkgcfg,
"--atleast-version=%s" % MIN_LIBVIRT_LXC,
"libvirt"])
-except DistutilsExecError,e:
+except DistutilsExecError:
have_libvirt_lxc=False
def get_pkgconfig_data(args, mod, required=True):
--
1.8.3.2