From 12cbce0de749f7d1cdd5ddc4d13a0c00e927c47b Mon Sep 17 00:00:00 2001 From: Lars Hupfeldt Date: Thu, 13 Feb 2014 18:37:44 +0100 Subject: [PATCH] Fix wrong translation of 'except' from python2 to pytho3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65443ed..05ccab1 100644 --- 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 = { -- 2.34.1