Skip to content

Commit 5ba8175

Browse files
committed
Fix dumb mistake
We were ignoring all patches...
1 parent fd5be5f commit 5ba8175

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cfbot_commitfest_rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_latest_patches_from_thread_url(thread_url):
4444
'<a href="(/message-id/attachment/[^"]*\\.(diff|diff\\.gz|patch|patch\\.gz|tar\\.gz|tgz|tar\\.bz2|zip))">',
4545
line,
4646
)
47-
if groups and not groups.group(1):
47+
if groups:
4848
attachment = groups.group(1)
4949
if "/nocfbot" not in attachment and not attachment.endswith(
5050
"subtrans-benchmark.tar.gz"

0 commit comments

Comments
 (0)