diff options
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") { |