Fix slash position in MustBuildServerURL().

This commit is contained in:
Julius Volz 2015-06-01 12:54:19 +02:00
parent d7c015c149
commit 09fcf505f5
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ func MustBuildServerURL(pathPrefix string) string {
if err != nil {
panic(err)
}
return fmt.Sprintf("http://%s:%s/%s", hostname, port, pathPrefix)
return fmt.Sprintf("http://%s:%s%s/", hostname, port, pathPrefix)
}
func getHostname() (string, error) {