'except' style fix
This commit is contained in:
parent
f7e640fd98
commit
858c80bb20
|
@ -11,7 +11,7 @@ except ImportError:
|
||||||
import pkg_resources
|
import pkg_resources
|
||||||
__version__ = pkg_resources.get_distribution('pycountry').version + ' (PyCountry)'
|
__version__ = pkg_resources.get_distribution('pycountry').version + ' (PyCountry)'
|
||||||
del pkg_resources
|
del pkg_resources
|
||||||
except:
|
except (ImportError, Exception):
|
||||||
__version__ = "? (PyCountry)"
|
__version__ = "? (PyCountry)"
|
||||||
|
|
||||||
def _copy_fields(l):
|
def _copy_fields(l):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user