diff --git a/wbia/control/_sql_helpers.py b/wbia/control/_sql_helpers.py index 0a8bb6816..17932d4c2 100644 --- a/wbia/control/_sql_helpers.py +++ b/wbia/control/_sql_helpers.py @@ -20,8 +20,8 @@ def version_check(): """ try: print("setuptools version:", setuptools.__version__) - except: - print("setuptools version - no able to fetch version") + except Exception as ex: + print("setuptools version - no able to fetch version", ex.message, ex.args) def compare_string_versions(a, b):