Skip to content
Snippets Groups Projects
Commit 7a7b6ae5 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

In translation(): Remove strange spaces in hash key. Found by Dan S.

parent 91bc112d
No related branches found
No related tags found
No related merge requests found
...@@ -646,15 +646,15 @@ sub translation { ...@@ -646,15 +646,15 @@ sub translation {
$self->{'transcript_mapper'} = undef; $self->{'transcript_mapper'} = undef;
} elsif ( !exists( $self->{' translation '} ) } elsif ( !exists( $self->{'translation'} )
&& defined( $self->adaptor() ) ) && defined( $self->adaptor() ) )
{ {
$self->{' translation '} = $self->{'translation'} =
$self->adaptor()->db()->get_TranslationAdaptor() $self->adaptor()->db()->get_TranslationAdaptor()
->fetch_by_Transcript($self); ->fetch_by_Transcript($self);
} }
return $self->{' translation '}; return $self->{'translation'};
} ## end sub translation } ## end sub translation
=head2 get_all_alternative_translations =head2 get_all_alternative_translations
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment