Skip to content

Commit

Permalink
Fixed mistake introduced in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fangly committed May 8, 2012
1 parent 63bc55c commit 21cfe5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bio/DB/Taxonomy/entrez.pm
Expand Up @@ -640,8 +640,8 @@ sub _build_url {
# Given a eutility (esearch.fcgi, efetch.fcgi or esummary.fcgi) and a
# hashref or parameters, build a url suitable for eutil query
my ($self, $eutility, $p) = @_;
my $params = join($UrlParamSeparatorValue, map { "$_=".$p->{$_} } keys %$p);
my $url = sprintf("%s%s?%s",$self->entrez_url,$EntrezGet,$params);
my $params = join($UrlParamSeparatorValue, map { $_.'='.$p->{$_} } keys %$p);
my $url = $self->entrez_url.$eutility.'?'.$params;
$self->debug("url is $url\n");
return $url;
}
Expand Down

0 comments on commit 21cfe5c

Please sign in to comment.