Automatic merge from submit-queue kubectl: fix URLVisitor error message The status of a failed fetch will usually include the code, resulting in a duplicate code in the error message: ``` unable to read URL "http://git:8080/ruby-hello-world.git", server reported 401 401 Unauthorized ``` This change rearranges them so at least the message doesn't stutter (and includes the code in case it's not part of the status): ``` unable to read URL "http://git:8080/ruby-hello-world.git", server reported 401 Unauthorized, status code 401 ``` []()