diff options
author | Magnus Hagander | 2012-08-12 16:02:47 +0000 |
---|---|---|
committer | Magnus Hagander | 2012-08-12 16:02:47 +0000 |
commit | be7262f8c6a3ee69a78f9766f1bb9fb2467c1d08 (patch) | |
tree | 492ce57d9c1e514892e983ce022c07b57b81e2c5 /loader/lib/parser.py | |
parent | 9d890f9a84bf132c2f7c9db4608fb8b957cfec56 (diff) |
Another typo, i think
Diffstat (limited to 'loader/lib/parser.py')
-rw-r--r-- | loader/lib/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/lib/parser.py b/loader/lib/parser.py index 18be02b..543a535 100644 --- a/loader/lib/parser.py +++ b/loader/lib/parser.py @@ -406,7 +406,7 @@ class ArchivesParser(object): # rid of them. m = self._re_mailworkaround.search(hdr) if m: - hdr = hdr.sub(r'\1', hdr) + hdr = self._re_mailworkaround.sub(r'\1', hdr) try: return " ".join([unicode(s, charset and self.clean_charset(charset) or 'us-ascii', errors='ignore') for s,charset in decode_header(hdr)]) |