summaryrefslogtreecommitdiff
path: root/scripts/Dpkg
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2013-11-07 06:22:58 +0100
committerGuillem Jover <guillem@debian.org>2013-12-04 07:09:43 +0100
commit38d22e9477c3120081c73553138d7f26288a7682 (patch)
tree530ee1324b7629aade186402a873e0c47624dba9 /scripts/Dpkg
parente5a6908870538026dc1b29f4085855e877e8aed1 (diff)
downloaddpkg-38d22e9477c3120081c73553138d7f26288a7682.tar.gz
scripts: Remove redundant STDOUT from print calls
Addresses InputOutput::RequireBracedFileHandleWithPrint. Warned-by: perlcritic
Diffstat (limited to 'scripts/Dpkg')
-rw-r--r--scripts/Dpkg/Source/Package/V2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Source/Package/V2.pm b/scripts/Dpkg/Source/Package/V2.pm
index de0a2073d..d1147d006 100644
--- a/scripts/Dpkg/Source/Package/V2.pm
+++ b/scripts/Dpkg/Source/Package/V2.pm
@@ -652,7 +652,7 @@ sub do_commit {
}
while (_is_bad_patch_name($dir, $patch_name)) {
# Ask the patch name interactively
- print STDOUT _g('Enter the desired patch name: ');
+ print _g('Enter the desired patch name: ');
chomp($patch_name = <STDIN>);
$patch_name =~ s/\s+/-/g;
$patch_name =~ s/\///g;