summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-04-08 20:59:28 +0000
committerKarl Berry <karl@freefriends.org>2013-04-08 20:59:28 +0000
commit0adbaaeb3c7cf72b34a6a9f7b43fcede95fcc386 (patch)
tree2e36f10c2b2140f1e983e6cb464d9477e01e44e3 /Master/tlpkg/TeXLive
parent99219ccf2636cfee822cc613d4f9604df40c4c17 (diff)
yet more pattern and wording fixes
git-svn-id: svn://tug.org/texlive/trunk@29762 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TeXCatalogue.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TeXCatalogue.pm b/Master/tlpkg/TeXLive/TeXCatalogue.pm
index 575242d19a6..7d116c2ba69 100644
--- a/Master/tlpkg/TeXLive/TeXCatalogue.pm
+++ b/Master/tlpkg/TeXLive/TeXCatalogue.pm
@@ -186,13 +186,13 @@ sub initialize {
|| die "chdir($self->{location}/entries failed: $!";
# parse all the files
foreach (glob("?/*.xml")) {
- open(my $io,"<$_") or die "Cannot read $_: $!";
+ open(my $io,"<$_") or die "open($_) failed: $!";
our $tce;
# the XML parser die's on malformed xml entries, so we catch
# that and continue, simply skipping the entry
eval { $tce = TeXLive::TeXCatalogue::Entry->new( 'ioref' => $io ); };
if ($@) {
- printf STDERR "TeX Catalogue: cannot read $_, skipping it!\n";
+ printf STDERR "TeXCatalogue.pm: cannot parse $_, skipping it!\n";
close($io);
next;
}