This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit 0e34ef96d5d01c3cbddd44958bc61287cae46be5 Author: James McCoy <[email protected]> Date: Thu Dec 5 22:54:31 2013 -0500 chdist: Fix a [A-z] regex typo. Signed-off-by: James McCoy <[email protected]> --- debian/changelog | 6 ++++++ scripts/chdist.pl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index bb7bd73..7540faa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +devscripts (2.13.6) UNRELEASED; urgency=medium + + * chdist: Fix a [A-z] regex typo. + + -- James McCoy <[email protected]> Thu, 05 Dec 2013 22:47:37 -0500 + devscripts (2.13.5) unstable; urgency=low [ James McCoy ] diff --git a/scripts/chdist.pl b/scripts/chdist.pl index 379a2c0..e393e7c 100755 --- a/scripts/chdist.pl +++ b/scripts/chdist.pl @@ -627,7 +627,7 @@ sub parseFile { } } elsif ( $line =~ m|^[a-zA-Z]| ) { # Gather data - my ($field, $data) = $line =~ m|([a-zA-z-]+): (.*)$|; + my ($field, $data) = $line =~ m|([a-zA-Z-]+): (.*)$|; if ($data) { $tmp{$field} = $data; } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
