From: Tara L Andrews Date: Wed, 25 Apr 2012 12:46:28 +0000 (+0200) Subject: pass $self to a method call, oops X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=91a190c3a6b64157c90d57ab69845814884510c9;p=scpubgit%2Fstemmatology.git pass $self to a method call, oops --- diff --git a/lib/Text/Tradition/Collation.pm b/lib/Text/Tradition/Collation.pm index 7b26135..b246c7e 100644 --- a/lib/Text/Tradition/Collation.pm +++ b/lib/Text/Tradition/Collation.pm @@ -1386,7 +1386,7 @@ sub path_text { $start = $self->start unless $start; $end = $self->end unless $end; my @path = grep { !$_->is_meta } $self->reading_sequence( $start, $end, $wit ); - return _text_from_path( @path ); + return $self->_text_from_path( @path ); } # Utility function so that we can cheat and use it when we need both the path