Skip to content

Commit

Permalink
Clean up URL formatting, so clicking on link does not include '. Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
berthubert committed Apr 12, 2024
1 parent b1b2980 commit bc0b45f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minicurl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ std::string MiniCurl::getURL(const std::string& str, const bool nobody, MiniCurl
d_host_list = nullptr;
}
if(res != CURLE_OK) {
throw std::runtime_error("Unable to retrieve URL '"+str+ "': "+string(curl_easy_strerror(res)));
throw std::runtime_error("Unable to retrieve URL "+str+ " - "+string(curl_easy_strerror(res)));
}

d_filetime=-1;
Expand Down

0 comments on commit bc0b45f

Please sign in to comment.