diff --git a/lib/storage/index.js b/lib/storage/index.js index d175548c201..33b30a5ee54 100644 --- a/lib/storage/index.js +++ b/lib/storage/index.js @@ -284,7 +284,7 @@ Bucket.prototype.writeStream = function(name, stream, metadata, callback) { oldEndFn = remoteStream.end; remoteStream.end = function(data, encoding, callback) { data = data || ''; - data += '\n\n--' + boundary + '--\n'; + data += '\n--' + boundary + '--\n'; remoteStream.write(data, encoding, callback); oldEndFn.apply(this); };