exception type

This commit is contained in:
Romain Dorgueil
2016-12-26 11:58:12 +01:00
parent 75188f9371
commit 00692ed076

View File

@ -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'