diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat index a61b32641747..157292448108 100755 --- a/bin/lo-commit-stat +++ b/bin/lo-commit-stat @@ -5,6 +5,7 @@ use strict; use LWP::UserAgent; +use utf8; my $main_repo="core"; my @pieces=("binfilter", "dictionaries", "help", "translations"); @@ -297,7 +298,7 @@ sub get_bug_name($$) my $response = $ua->get($url); if ($response->is_success) { my $title = $response->title; - if ( $title =~ s/^Bug \d+ . // ) { + if ( $title =~ s/^Bug \d+ – // ) { print "$title\n"; return $title; } else {