Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-03-22 00:11:15 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2009-03-22 00:11:15 +0300
commit5edfee0a5bbe68dbbd2758f24deaa2ae6ad581ad (patch)
treebcace637fbb056dd82a8736aeff7d1eff2e691de /scripts/git2cl.pl
parente0fe5c78fd61292ced7b3707be37c22dff7f5b05 (diff)
Fix a few more odd writing cases for authors
Diffstat (limited to 'scripts/git2cl.pl')
-rw-r--r--scripts/git2cl.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git2cl.pl b/scripts/git2cl.pl
index 5ca282769..0a54490d8 100644
--- a/scripts/git2cl.pl
+++ b/scripts/git2cl.pl
@@ -15,7 +15,7 @@ while(<LOG>) {
chomp();
my ($hash,$author,$email,$date,$subject) = split(/\0/,$_);
- if ($subject =~ s/\s*\[(\w+)\]$//) {
+ if ($subject =~ s/\s*\[([\w-]+)\]\s*$//) {
$author = $1;
$email = lc "$1\@users.sourceforge.net";
}