Fix formatting (hopefully also restarts build properly)

This commit is contained in:
Ines Montani 2019-03-20 09:55:45 +01:00
parent f2547f02d6
commit ae5b4d0e84
2 changed files with 5 additions and 4 deletions

View File

@ -15,6 +15,7 @@ from .about import __version__
from .errors import Errors, Warnings, deprecation_warning
from . import util
if sys.maxunicode == 65535:
raise SystemError(Errors.E130)

View File

@ -367,10 +367,10 @@ class Errors(object):
"Instead, create a new Span object and specify the `label` keyword argument, "
"for example:\nfrom spacy.tokens import Span\n"
"span = Span(doc, start={start}, end={end}, label='{label}')")
E130 = ("You are running a narrow unicode build, "
"which is incompatible with spacy >= 2.1.0, reinstall Python and "
"use a wide unicode build instead. You can also rebuild Python "
"and set the --enable-unicode=ucs4 flag.")
E130 = ("You are running a narrow unicode build, which is incompatible "
"with spacy >= 2.1.0. To fix this, reinstall Python and use a wide "
"unicode build instead. You can also rebuild Python and set the "
"--enable-unicode=ucs4 flag.")
@add_codes