From 00692ed0767b6e2b47b397244265c5e72cf00d91 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Mon, 26 Dec 2016 11:58:12 +0100 Subject: [PATCH] exception type --- bonobo/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonobo/__init__.py b/bonobo/__init__.py index c77beda..9b14ef6 100644 --- a/bonobo/__init__.py +++ b/bonobo/__init__.py @@ -11,5 +11,5 @@ assert PY35, 'Python 3.5+ is required to use Bonobo.' try: with open('../version.txt') as f: __version__ = f.read().strip() -except: +except Exception as e: __version__ = 'dev'