diff options
author | Karl Berry <karl@freefriends.org> | 2008-11-18 00:58:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-11-18 00:58:41 +0000 |
commit | 9333748b5b1c858f157072c5a7845e1eac780350 (patch) | |
tree | 3a0a79d38558c043ec959869e670605a67abd061 /Master/tlpkg/TeXLive/TLPSRC.pm | |
parent | c74d68ee64328c552d23aae43da7aa496637f257 (diff) |
more information when dying
git-svn-id: svn://tug.org/texlive/trunk@11340 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPSRC.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index e21d938b6c9..e30fb750521 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -41,7 +41,7 @@ sub new sub from_file { my $self = shift; - die("Need exactly one filename for initialization!") if @_ != 1; + die "need exactly one filename for initialization" if @_ != 1; my $srcfile = $_[0]; if (! -r "$srcfile") { |