summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Christopher Anderson <jchris@apache.org>2008-10-06 06:46:45 +0000
committerJohn Christopher Anderson <jchris@apache.org>2008-10-06 06:46:45 +0000
commite0b2fe1ef01ff03ae6287409c7b0424558b13b4a (patch)
tree3ae30ac01f9d5f364d2459de3599db5640f073ca /src
parent04b2acac82d8b0ad60be485b8b1321c2fcbe6f57 (diff)
tiny whitespace fix for 409 database error
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@701960 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/couchdb/couch_httpd.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl
index e0f6b4f5..77175e1f 100644
--- a/src/couchdb/couch_httpd.erl
+++ b/src/couchdb/couch_httpd.erl
@@ -253,7 +253,7 @@ send_error(Req, conflict) ->
send_error(Req, {doc_validation, Msg}) ->
send_error(Req, 406, <<"doc_validation">>, Msg);
send_error(Req, file_exists) ->
- send_error(Req, 409, <<"file_exists">>, <<"The database could not be"
+ send_error(Req, 409, <<"file_exists">>, <<"The database could not be "
"created, the file already exists.">>);
send_error(Req, {Error, Reason}) ->
send_error(Req, 500, Error, Reason);