'except' style fix
This commit is contained in:
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…
Reference in New Issue
Block a user