format date according to ISO 8601
This commit is contained in:
parent
4b11d2a01e
commit
5b9cc700f8
@ -59,7 +59,7 @@ def mail_daily_digest(session, sender, receiver, prefix):
|
|||||||
text = truncate_text(entry.get_text(), 250)
|
text = truncate_text(entry.get_text(), 250)
|
||||||
text = textwrap.fill(text, width=78)
|
text = textwrap.fill(text, width=78)
|
||||||
try:
|
try:
|
||||||
body += '=> %s - %s\n' % (entry.firstfetched.strftime('%y%m%d-%H%M'), feedinfo.title)
|
body += '=> %s - %s\n' % (entry.firstfetched.strftime('%Y-%m-%dT%H:%M'), feedinfo.title)
|
||||||
body += '>> %s\n' % entry.title
|
body += '>> %s\n' % entry.title
|
||||||
body += '%s\n' % text
|
body += '%s\n' % text
|
||||||
body += '%s\n\n' % link
|
body += '%s\n\n' % link
|
||||||
@ -70,7 +70,7 @@ def mail_daily_digest(session, sender, receiver, prefix):
|
|||||||
return
|
return
|
||||||
if count > 0:
|
if count > 0:
|
||||||
today = datetime.now()
|
today = datetime.now()
|
||||||
subject = '%s (%s) - %d entries' % (today.strftime('%y%m%d'), today.strftime('%A'), count)
|
subject = '%s (%s) - %d entries' % (today.strftime('%Y-%m-%d'), today.strftime('%A'), count)
|
||||||
body = '%s\n\n%s\n\n%s' % (subject, ddate(), body)
|
body = '%s\n\n%s\n\n%s' % (subject, ddate(), body)
|
||||||
if prefix != '':
|
if prefix != '':
|
||||||
subject = '%s %s' % (prefix, subject)
|
subject = '%s %s' % (prefix, subject)
|
||||||
|
Loading…
Reference in New Issue
Block a user