'except' style fix

pull/869/head
Daniel Pavel 5 years ago
parent f7e640fd98
commit 858c80bb20

@ -11,7 +11,7 @@ except ImportError:
import pkg_resources
__version__ = pkg_resources.get_distribution('pycountry').version + ' (PyCountry)'
del pkg_resources
except:
except (ImportError, Exception):
__version__ = "? (PyCountry)"
def _copy_fields(l):

Loading…
Cancel
Save