diff options
author | RaubJo <JosephRaub98@gmail.com> | 2020-11-14 21:30:10 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-14 21:30:10 -0600 |
commit | 51a1b44774ae2f23e2843ec39ec8845bab255a0e (patch) | |
tree | 8da5cdc457c6baf2c3f5ee9bc8b6dcdf2ed26dab /email-widget | |
parent | bec2154948dd75c1c4a9b846a468910c5b62bc77 (diff) |
Update read_unread_emails.py
I added the closing ')' on line 27
Diffstat (limited to 'email-widget')
-rw-r--r-- | email-widget/read_unread_emails.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/email-widget/read_unread_emails.py b/email-widget/read_unread_emails.py index 607bdcc..fda8188 100644 --- a/email-widget/read_unread_emails.py +++ b/email-widget/read_unread_emails.py @@ -24,7 +24,7 @@ def process_mailbox(M): local_date = datetime.datetime.fromtimestamp(email.utils.mktime_tz(date_tuple)) print("{}: {}".format(header, local_date.strftime("%a, %d %b %Y %H:%M:%S"))) else: - print('{}: {}'.format(header, hdr) + print('{}: {}'.format(header, hdr)) # with code below you can process text of email # if msg.is_multipart(): # for payload in msg.get_payload(): |