diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/parent.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/parent.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/parent.pm b/Master/tlpkg/tlperl/lib/parent.pm index f6e8cd497db..e1ccef4934a 100644 --- a/Master/tlpkg/tlperl/lib/parent.pm +++ b/Master/tlpkg/tlperl/lib/parent.pm @@ -1,7 +1,7 @@ package parent; use strict; use vars qw($VERSION); -$VERSION = '0.234'; +$VERSION = '0.236'; sub import { my $class = shift; @@ -19,11 +19,11 @@ sub import { { no strict 'refs'; - push @{"$inheritor\::ISA"}, @_; + push @{"$inheritor\::ISA"}, @_; # dies if a loop is detected }; }; -"All your base are belong to us" +1; __END__ |