From 66c7ccf6cc2e12841727540377bfd526826bdecb Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 7 Apr 2015 04:53:40 +0200 Subject: [PATCH] * Fix Spans.orth_ --- spacy/spans.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/spans.pyx b/spacy/spans.pyx index e750abbad..9481423d2 100644 --- a/spacy/spans.pyx +++ b/spacy/spans.pyx @@ -129,7 +129,7 @@ cdef class Span: property orth_: def __get__(self): - return ' '.join([t.string for t in self]).strip() + return ''.join([t.string for t in self]).strip() property lemma_: def __get__(self):