Update of /cvsroot/mailman/mailman/cron
In directory usw-pr-cvs1:/tmp/cvs-serv14208

Modified Files:
        checkdbs 
Log Message:
pending_requests(): Slightly better formatting when there's a
fullname.


Index: checkdbs
===================================================================
RCS file: /cvsroot/mailman/mailman/cron/checkdbs,v
retrieving revision 2.8
retrieving revision 2.9
diff -C2 -d -r2.8 -r2.9
*** checkdbs    28 Feb 2002 21:32:20 -0000      2.8
--- checkdbs    15 Mar 2002 20:56:30 -0000      2.9
***************
*** 88,93 ****
          else:
              when, addr, fullname, passwd, digest, lang = info
!             fullname = '<%s>' % fullname
!         pending.append('    %s %s %s' % (fullname, addr, time.ctime(when)))
      first = 1
      for id in mlist.GetHeldMessageIds():
--- 88,94 ----
          else:
              when, addr, fullname, passwd, digest, lang = info
!             if fullname:
!                 fullname = ' (%s)' % fullname
!         pending.append('    %s%s %s' % (addr, fullname, time.ctime(when)))
      first = 1
      for id in mlist.GetHeldMessageIds():


_______________________________________________
Mailman-checkins mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-checkins

Reply via email to