Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wikiextractor/WikiExtractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ def collect_pages(text):
page.append(line)
elif tag == '/page':
colon = title.find(':')
if (colon < 0 or (title[:colon] in acceptedNamespaces) and id != last_id and
not redirect and not title.startswith(templateNamespace)):
if ((colon < 0 or (title[:colon] in acceptedNamespaces)) and
(id != last_id and not redirect and not title.startswith(templateNamespace))):
yield (id, revid, title, page)
last_id = id
id = ''
Expand Down