* Fix exception for python 2

This commit is contained in:
Matthew Honnibal 2015-10-23 01:56:13 +02:00
parent 341a3e85cd
commit ff4fe524ee

View File

@ -7,6 +7,13 @@ import plac
from . import uget
try:
FileExistsError
except NameError:
FileExistsError = Exception
# TODO: Read this from the same source as the setup
VERSION = '0.9.6'