Fix wrong translation of 'except' from python2 to pytho3
authorLars Hupfeldt <lhn@hupfeldtit.dk>
Thu, 13 Feb 2014 17:37:44 +0000 (18:37 +0100)
committerLars Hupfeldt <lhn@hupfeldtit.dk>
Thu, 13 Feb 2014 17:37:44 +0000 (18:37 +0100)
setup.py

index 65443ed..05ccab1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ SHORT_DESCRIPTION = 'A Python API for accessing resources on a Jenkins continuou
 
 try:
     DESCRIPTION = open(os.path.join(PROJECT_ROOT, "README.rst")).read()
-except (IOError, _):
+except IOError:
     DESCRIPTION = SHORT_DESCRIPTION
 
 GLOBAL_ENTRY_POINTS = {