diff options
author | Matěj Cepl <mcepl@redhat.com> | 2014-01-03 01:24:49 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2014-01-03 01:24:49 +0100 |
commit | b33a83d94d6b69e6780244a09ebc975bc93ace5d (patch) | |
tree | 5498f83c078bfcf4359f64c1260c19ede1fdc3f2 /gg_scrapper.py | |
parent | 6cd88bf84d51eef22b980f435044a9996df1ed1b (diff) | |
download | gg_scraper-b33a83d94d6b69e6780244a09ebc975bc93ace5d.tar.gz |
Skip over unfilled items in the unmangling config. file.
Fixes #281
Diffstat (limited to 'gg_scrapper.py')
-rwxr-xr-x | gg_scrapper.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gg_scrapper.py b/gg_scrapper.py index d50192a..f4d3263 100755 --- a/gg_scrapper.py +++ b/gg_scrapper.py @@ -277,6 +277,8 @@ def demangle(correct_list, orig_mbx, out_mbx): if matches is not None: u_from = msg.get_from() for orig, fixed in pairs.items(): + if (orig is not None) and (fixed is not None): + continue msg_str = msg_str.replace(orig, fixed) out_msg = mailbox.mboxMessage(msg_str) out_msg.set_from(u_from) |