diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2022-11-04 12:16:54 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2023-05-25 10:55:20 +0200 |
commit | d99b97701f9bd66022ff0511207aa7d0dab3ac53 (patch) | |
tree | 0ff5f7dccf7d4da27e355c10071f2d7826b52f99 /mail2news.py | |
parent | f4260cca57681297646f3aa62e662b34f37ed2b7 (diff) | |
download | pyg-d99b97701f9bd66022ff0511207aa7d0dab3ac53.tar.gz |
Tiny cleanups
Diffstat (limited to 'mail2news.py')
-rw-r--r-- | mail2news.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail2news.py b/mail2news.py index 5f9d7a7..b19b619 100644 --- a/mail2news.py +++ b/mail2news.py @@ -109,7 +109,7 @@ class mail2news(object): self.message['In-Reply-To']) # if found, keep first element that seems a Msg-ID. - if(ref and len(ref)): + if (ref and len(ref)): self.message['References'] = '%s\n' % ref[0] except KeyError as message: |