diff options
| -rwxr-xr-x | cron/checkdbs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cron/checkdbs b/cron/checkdbs index 04a813a82..a0e66ea43 100755 --- a/cron/checkdbs +++ b/cron/checkdbs @@ -87,8 +87,9 @@ def pending_requests(mlist): fullname = '' else: when, addr, fullname, passwd, digest, lang = info - fullname = '<%s>' % fullname - pending.append(' %s %s %s' % (fullname, addr, time.ctime(when))) + if fullname: + fullname = ' (%s)' % fullname + pending.append(' %s%s %s' % (addr, fullname, time.ctime(when))) first = 1 for id in mlist.GetHeldMessageIds(): if first: |
