This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=854798d4f710d593665221cecd9400c8a353d6f7 commit 854798d4f710d593665221cecd9400c8a353d6f7 Author: Guillem Jover <[email protected]> AuthorDate: Wed Dec 28 01:03:44 2022 +0100 dpkg-scansources: Turn spaces followed by tabs into spaces Changelog: internal --- scripts/dpkg-scansources.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dpkg-scansources.pl b/scripts/dpkg-scansources.pl index 9c55a354b..da19ba7b2 100755 --- a/scripts/dpkg-scansources.pl +++ b/scripts/dpkg-scansources.pl @@ -99,7 +99,7 @@ sub load_override { my $comp_file = Dpkg::Compression::FileHandle->new(filename => $file); while (<$comp_file>) { - s/#.*//; + s/#.*//; next if /^\s*$/; s/\s+$//; @@ -160,7 +160,7 @@ sub load_src_override { debug(1, "source override file $file"); my $comp_file = Dpkg::Compression::FileHandle->new(filename => $file); while (<$comp_file>) { - s/#.*//; + s/#.*//; next if /^\s*$/; s/\s+$//; -- Dpkg.Org's dpkg

