diff --git a/spacy/tokens/token.pyx b/spacy/tokens/token.pyx index 1f672ee35..dc2abbb25 100644 --- a/spacy/tokens/token.pyx +++ b/spacy/tokens/token.pyx @@ -251,7 +251,7 @@ cdef class Token: """Get a list of conjoined words.""" cdef Token word conjuncts = [] - if self.c.pos != CONJ and self.c.pos != PUNCT: + if self.dep_ != 'conj': for word in self.rights: if word.dep_ == 'conj': yield word