Show More
@@ -391,9 +391,9 b' class notifier(object):' | |||||
391 | sender = msg[r'From'] |
|
391 | sender = msg[r'From'] | |
392 | subject = msg[r'Subject'] |
|
392 | subject = msg[r'Subject'] | |
393 | if sender is not None: |
|
393 | if sender is not None: | |
394 |
sender = |
|
394 | sender = mail.headdecode(sender) | |
395 | if subject is not None: |
|
395 | if subject is not None: | |
396 |
subject = |
|
396 | subject = mail.headdecode(subject) | |
397 | del msg[r'From'], msg[r'Subject'] |
|
397 | del msg[r'From'], msg[r'Subject'] | |
398 |
|
398 | |||
399 | if not msg.is_multipart(): |
|
399 | if not msg.is_multipart(): |
General Comments 0
You need to be logged in to leave comments.
Login now