From eb9054310d9dc791198458d773c568f468128b5d Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 30 Nov 2010 09:12:55 -0600 Subject: [PATCH] Be more lenient when parsing ticket summaries. --- scripts/process-git-requests/process-git-requests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests index 568bd94..aec7b15 100755 --- a/scripts/process-git-requests/process-git-requests +++ b/scripts/process-git-requests/process-git-requests @@ -468,7 +468,7 @@ def process_new_request(bug, comment, allcomments, firstfound, pkgdb, fas, branc warned = True short_desc = bug.short_desc - m=re.search('Review Request:\s([a-zA-Z0-9_+.-]+)\s+', short_desc, re.I) + m=re.search('Review Request:\s+([a-zA-Z0-9_+.-]+)\s+', short_desc, re.I) if not m: warnings.append("WARNING: Couldn't parse package name out of bug summary.") warned = True