Commit 66781ca4 authored by Julien Muchembled's avatar Julien Muchembled

Zope: fix patch to MailHost._send

parent 889bd197
......@@ -28,4 +28,4 @@ for f in MailBase.__dict__.itervalues():
i = args.index('immediate') - len(args)
except ValueError:
continue
f.func_defaults = defaults[:i] + (True,) + defaults[i+1:]
f.func_defaults = defaults[:i] + (True,) + defaults[i+1 or len(args):]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment