diff options
Diffstat (limited to 'rt/sbin/extract-message-catalog')
-rw-r--r-- | rt/sbin/extract-message-catalog | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/sbin/extract-message-catalog b/rt/sbin/extract-message-catalog index 022b5b2a9..f6a7f8505 100644 --- a/rt/sbin/extract-message-catalog +++ b/rt/sbin/extract-message-catalog @@ -120,7 +120,7 @@ sub extract_strings_from_code { $filename =~ s'^\./''; $filename =~ s'\.in$''; - unless (open _, $file) { + unless (open _, '<', $file) { print "Cannot open $file for reading ($!), skipping.\n"; return; } @@ -249,7 +249,7 @@ sub update { print "Updating $lang...\n"; my @lines; - @lines = (<LEXICON>) if open (LEXICON, $file); + @lines = (<LEXICON>) if open LEXICON, '<', $file; @lines = grep { !/^(#(:|\.)\s*|$)/ } @lines; while (@lines) { my $msghdr = ""; @@ -343,7 +343,7 @@ sub update { $out .= 'msgid ' . fmt($_) . "msgstr \"$Lexicon{$_}\"\n\n"; } - open PO, ">$file" or die "Couldn't open '$file' for writing: $!"; + open( PO, '>', $file ) or die "Couldn't open '$file' for writing: $!"; print PO $out; close PO; |