handle empty comments which are 'False' somehow.

This commit is contained in:
Nathan TeBlunthuis 2025-05-29 18:14:58 -07:00
parent a9f76a0f62
commit 606a399450

2
wikiq
View File

@ -538,7 +538,7 @@ class WikiqParser:
title=page.title,
deleted=rev.deleted.text,
namespace=namespace,
edit_summary=rev.comment
edit_summary="" if rev.comment is False else rev.comment
)
rev_data = self.matchmake_revision(rev, rev_data)