Fix CLI for Python 2

This commit is contained in:
Matthew Honnibal 2017-03-18 18:14:03 +01:00
parent e3e892b93d
commit 1a53fcc685

View File

@ -1,5 +1,8 @@
# coding: utf8
from __future__ import unicode_literals, print_function
#
from __future__ import print_function
# NB! This breaks in plac on Python 2!!
#from __future__ import unicode_literals,
import plac
from spacy.cli import download as cli_download