From de46911d9ca248c2c6ce95518cd25e3c277208d7 Mon Sep 17 00:00:00 2001 From: Siddhesh Mhadnak Date: Mon, 9 May 2022 21:35:53 +0530 Subject: [PATCH] fix(childes): use correct xmlns (#2998) Fixes #2997 --- nltk/corpus/reader/childes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nltk/corpus/reader/childes.py b/nltk/corpus/reader/childes.py index e726a709d1..07cbf8349f 100644 --- a/nltk/corpus/reader/childes.py +++ b/nltk/corpus/reader/childes.py @@ -20,7 +20,7 @@ from nltk.util import LazyConcatenation, LazyMap, flatten # to resolve the namespace issue -NS = "https://www.talkbank.org/ns/talkbank" +NS = "http://www.talkbank.org/ns/talkbank" class CHILDESCorpusReader(XMLCorpusReader):