minor indent change

This commit is contained in:
Steve McIntyre 2011-06-09 15:25:38 +00:00
parent 8b66b324b7
commit 17686a2761
1 changed files with 2 additions and 3 deletions

View File

@ -127,9 +127,8 @@ if (length($pkgdata) > 2) {
if (length($pkgdata) > 2) { if (length($pkgdata) > 2) {
my $dir; my $dir;
$pkgdata =~ m/^Directory: (\S+)/m and $dir = $1; $pkgdata =~ m/^Directory: (\S+)/m and $dir = $1;
# Explicitly use the md5 lines in the Sources stanza, hence the xdigit(32) here # Explicitly use the md5 lines in the Sources stanza, hence the xdigit(32) here
while ($pkgdata =~ m/^ ([[:xdigit:]]{32}) (\d+) (\S+)/msg) { print "$dir/$3\n"; } while ($pkgdata =~ m/^ ([[:xdigit:]]{32}) (\d+) (\S+)/msg) { print "$dir/$3\n"; }
} }
} }
} }