fix case in JSON: blobref -> blobRef

This commit is contained in:
Brad Fitzpatrick 2010-07-25 22:30:17 -07:00
parent 1bcffa2b55
commit fefd3685bf
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ func handleEnumerateBlobs(conn *http.Conn, req *http.Request) {
break
}
blobName := bi.BlobRef.String()
fmt.Fprintf(conn, " {\"blobref\": \"%s\", \"size\": %d},\n",
fmt.Fprintf(conn, " {\"blobRef\": \"%s\", \"size\": %d},\n",
blobName, bi.FileInfo.Size)
after = blobName
}