Snapshot release 20030305-1533
Charles Cazabon <[email protected]> 5 Mar 2003 21:34:23 -0000
| Newsgroups | gmane.mail.bikini.devel |
|---|---|
| Message-ID | <[email protected]> |
Snapshot 20030305-1533 released and uploaded. From the CHANGELOG:
2003-03-05
Fix indentation in deliver_message. Would fail for >1 recipient.
Diff follows.
diff -urN --exclude=bikini.html --exclude=bikini.txt --exclude=CHANGELOG bikini-20030305-1531/bikini/utilities.py bikini-20030305-1533/bikini/utilities.py
--- bikini-20030305-1531/bikini/utilities.py Wed Mar 5 15:31:24 2003
+++ bikini-20030305-1533/bikini/utilities.py Wed Mar 5 15:33:54 2003
@@ -68,7 +68,7 @@
os.write (envelopepipe[WRITE], 'F%s\0' % parts[0])
for recip in parts[1:-1]:
os.write (envelopepipe[WRITE], 'T%s\0' % recip)
- os.write (envelopepipe[WRITE], '\0')
+ os.write (envelopepipe[WRITE], '\0')
os.close (envelopepipe[WRITE])
tries = 0
while tries < 10: