From 55e5a4703d1cfa9004ecfb8e2cbb4a8780ad28e8 Mon Sep 17 00:00:00 2001 From: Aleksey Maksimov Date: Thu, 13 Feb 2014 22:33:05 +0800 Subject: [PATCH] Tying to fix P3 incompatibility --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 185a7a7..65443ed 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.7.4