Overview
Comment: | Added debug statement. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
17b57461906b46123b0aca4a4eb36b34 |
User & Date: | geraint@users.sourceforge.net on 2002-08-21 05:59:47 |
Other Links: | branch diff | manifest | tags |
Context
2002-08-21
| ||
06:14:57 | Latest stable version (1.0) from sf syncmail project. check-in: 950ce75a86 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
05:59:47 | Added debug statement. check-in: 17b5746190 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-08-20
| ||
19:33:21 |
Minor bug fixes and enhancements (I hope):
Delimited expressions within function calls to prevent denominators from continuing beyond commas. | |
Changes
Modified CVSROOT/syncmail from [c9554ab114] to [2b9dfd3f97].
︙ | ︙ | |||
272 273 274 275 276 277 278 279 280 281 282 283 284 285 | L[-1] = "%s %s" % (prev, s) else: L.append(s) specs = L if verbose: print 'Generating notification message...' blast_mail(subject, people, specs[1:], contextlines) if verbose: print 'Generating notification message... done.' if __name__ == '__main__': | > | 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | L[-1] = "%s %s" % (prev, s) else: L.append(s) specs = L if verbose: print 'Generating notification message...' print 'Debug statement: in mtt/CVSROOT/syncmail' blast_mail(subject, people, specs[1:], contextlines) if verbose: print 'Generating notification message... done.' if __name__ == '__main__': |
︙ | ︙ |