diff options
author | Martin Fischer <martin@push-f.com> | 2022-07-17 10:42:39 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-07-17 10:43:29 +0200 |
commit | 164c75269ceb4de6b2e97d55d5625ee4ca4943dd (patch) | |
tree | f9f1a9d99024af62c0577ab3a48a4444333ad715 | |
parent | d35e72bb8f311d0b7d144fef79b3eed045260956 (diff) |
detect proposals without text as stubs
-rwxr-xr-x | proposals.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/proposals.py b/proposals.py index bd8c9ad..37e8ead 100755 --- a/proposals.py +++ b/proposals.py @@ -58,6 +58,19 @@ def is_stub(doc): # detect proposals without headings as stubs return True + if not any( + n + for n in doc.nodes + # any text + if isinstance(n, mwparserfromhell.nodes.text.Text) + # other than newlines + and n.strip() + # and "Please comment on the [[{{TALKPAGENAME}}|discussion page]]." + and n.strip() not in ('Please comment on the', '.') + ): + # detect proposals without text as stubs + return True + return False |