Fixed an issue with the string

This commit is contained in:
Thorsten Sommer 2015-07-10 16:20:29 +02:00
parent 20b93f42d4
commit 0911c828fc

View File

@ -18,5 +18,5 @@ func HandlerRobots(response http.ResponseWriter, request *http.Request) {
} }
Log.LogShort(senderName, LM.CategorySYSTEM, LM.LevelINFO, LM.MessageNameNETWORK, `The robots.txt was requested.`, request.RemoteAddr) Log.LogShort(senderName, LM.CategorySYSTEM, LM.LevelINFO, LM.MessageNameNETWORK, `The robots.txt was requested.`, request.RemoteAddr)
fmt.Fprintf(response, `%s`, robotsContent) fmt.Fprintf(response, "%s", robotsContent)
} }