Skip to content

Commit

Permalink
Tiny fix to ascii print method.
Browse files Browse the repository at this point in the history
  • Loading branch information
gjuggler committed Feb 7, 2011
1 parent 0f37a9d commit 8b6723f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bio/Tree/TreeFunctionsI.pm
Expand Up @@ -88,8 +88,8 @@ Internal methods are usually preceded with a _
package Bio::Tree::TreeFunctionsI;
use strict;

sub print_tree { print shift->ascii }
sub ascii { shift->root->ascii }
sub print_tree { print shift->ascii(@_) }
sub ascii { shift->root->ascii(@_) }

sub get_lineage_nodes {
my $self = shift;
Expand Down

0 comments on commit 8b6723f

Please sign in to comment.