Skip to content

Commit ec9dc20

Browse files
committed
Honor the user-specified boundary (fixes #100).
1 parent 55efa5c commit ec9dc20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

couchdb/tools/dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def dump_db(dburl, username=None, password=None, boundary=None,
2929
if username is not None and password is not None:
3030
db.resource.http.add_credentials(username, password)
3131

32-
envelope = write_multipart(output)
32+
envelope = write_multipart(output, boundary=boundary)
3333

3434
for docid in db:
3535
doc = db.get(docid, attachments=True)

0 commit comments

Comments
 (0)