From: Jaroslav Kysela Date: Thu, 23 Oct 2008 08:25:04 +0000 (+0200) Subject: fixed pre-receive (: ) in header #2 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=2217161dfb962f5e70c7897589a9611454f609ae;p=alsa.git fixed pre-receive (: ) in header #2 --- diff --git a/hooks/alsa-kernel.git/pre-receive b/hooks/alsa-kernel.git/pre-receive index 2c9407a..dce6997 100755 --- a/hooks/alsa-kernel.git/pre-receive +++ b/hooks/alsa-kernel.git/pre-receive @@ -290,7 +290,7 @@ def do_check_commit(lines): line.startswith('AuthorDate:') or line.startswith('Commit:') or \ line.startswith('CommitDate:'): a = line.split(': ') - commit[a[0].strip()] = ': '.join(a[1:]) + commit[a[0].strip()] = ': '.join(a[1:]).strip() elif line.startswith(' '): header = False if line.startswith(' '):