summaryrefslogtreecommitdiffstats
path: root/src/dkv/api/registrationHandlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/dkv/api/registrationHandlers.go')
-rw-r--r--src/dkv/api/registrationHandlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dkv/api/registrationHandlers.go b/src/dkv/api/registrationHandlers.go
index 1c50b33..0f697db 100644
--- a/src/dkv/api/registrationHandlers.go
+++ b/src/dkv/api/registrationHandlers.go
@@ -91,7 +91,7 @@ func HandleServiceGet(w http.ResponseWriter, r *http.Request) {
if found == true {
GenerateResponse(w, r, http.StatusOK, service)
} else {
- GenerateResponse(w, r, http.StatusNotFound, "Service for Token:"+token+"not found.")
+ GenerateResponse(w, r, http.StatusNotFound, "Service for Token: "+token+" not found.")
}
}