Skip to content

Commit

Permalink
Fix loading files with special characters in filepath. Fixes #508
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Sep 12, 2014
1 parent f014b36 commit 10fff61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/perl5/FeatureTrack.pm
Expand Up @@ -148,7 +148,7 @@ sub nameHandler { $_[0]->{nameHandler} }
sub _make_nameHandler {
my ( $self ) = @_;
(my $trackdir = $self->{trackDirTemplate}) =~ s/\{refseq\}/'$_[0]'/eg;
$self->{nameHandler} = NameHandler->new( eval qq|sub { "$trackdir" }| );
$self->{nameHandler} = NameHandler->new( eval qq|sub { '$trackdir' }| );
}


Expand Down

0 comments on commit 10fff61

Please sign in to comment.