* Add u prefix to string in web example

This commit is contained in:
Matthew Honnibal 2016-01-25 15:51:38 +01:00
parent eba03695ef
commit 907e8cf07d

View File

@ -13,7 +13,7 @@ def token(doc):
def test_load_resources_and_process_text():
from spacy.en import English
nlp = English()
doc = nlp('Hello, world. Here are two sentences.')
doc = nlp(u'Hello, world. Here are two sentences.')
@pytest.mark.models