typo in error message

pull/604/head
Justin Richer 2014-05-25 15:37:58 -04:00
parent 2af51dc77a
commit 85fd4e71ce
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ public class ClientAPI {
if (client == null) {
logger.error("apiShowClient failed; client with id " + id + " could not be found.");
model.addAttribute("code", HttpStatus.NOT_FOUND);
model.addAttribute("errorMessage", "The requested client with id " + id + "could not be found.");
model.addAttribute("errorMessage", "The requested client with id " + id + " could not be found.");
return "jsonErrorView";
}