Skip to content

Commit 92d6b05

Browse files
committed
Add missing "self" arg.
--HG-- extra : convert_revision : svn%3A7a298fb0-333a-0410-83e7-658617cd9cf3/trunk%40164
1 parent cfb228c commit 92d6b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

couchdb/multipart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def add(self, mimetype, content, headers=None):
125125
def close(self):
126126
self.fileobj.write('--%s--\r\n' % self.boundary)
127127

128-
def _make_boundary():
128+
def _make_boundary(self):
129129
try:
130130
from uuid import uuid4
131131
return uuid4().hex

0 commit comments

Comments
 (0)