diff options
author | Guillem Jover <guillem@debian.org> | 2014-03-31 07:36:22 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2014-04-21 07:07:55 +0200 |
commit | 82e5f76256237dc9407c8f532befe94307d6d724 (patch) | |
tree | 817b97b38cc6540724306c5c3e4f888075c187b9 /scripts/dpkg-source.pl | |
parent | 76923e8e32be9188cf6236fa1d1e70c280964ceb (diff) | |
download | dpkg-82e5f76256237dc9407c8f532befe94307d6d724.tar.gz |
scripts: Add a space after comma
Diffstat (limited to 'scripts/dpkg-source.pl')
-rwxr-xr-x | scripts/dpkg-source.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index 0770b5ba7..7e96ce189 100755 --- a/scripts/dpkg-source.pl +++ b/scripts/dpkg-source.pl @@ -268,7 +268,7 @@ if ($options{opmode} =~ /^(-b|--print-format|--(before|after)-build|--commit)$/) my $type = $pkg->{'Package-Type'} || $pkg->get_custom_field('Package-Type') || 'deb'; push @pkglist, sprintf('%s %s %s %s', $p, $type, $sect, $prio); - push(@binarypackages,$p); + push @binarypackages, $p; foreach (keys %{$pkg}) { my $v = $pkg->{$_}; if (m/^Architecture$/) { |