From f581f742095e4b01b73e391546ee11323f8b5fd7 Mon Sep 17 00:00:00 2001 From: chli Date: Thu, 26 Mar 2015 19:18:23 -0400 Subject: [PATCH] Issue #11836 Signed-off-by: chli --- api/server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server/server.go b/api/server/server.go index c52c6bd2a..5d6d92748 100644 --- a/api/server/server.go +++ b/api/server/server.go @@ -1297,7 +1297,7 @@ func makeHttpHandler(eng *engine.Engine, logging bool, localMethod string, local } if version.GreaterThan(api.APIVERSION) { - http.Error(w, fmt.Errorf("client and server don't have same version (client : %s, server: %s)", version, api.APIVERSION).Error(), http.StatusNotFound) + http.Error(w, fmt.Errorf("client and server don't have same version (client API version: %s, server API version: %s)", version, api.APIVERSION).Error(), http.StatusNotFound) return }