diff options
Diffstat (limited to 'Lib/email/Header.py')
-rw-r--r-- | Lib/email/Header.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/Header.py b/Lib/email/Header.py index abc342c..a6a1b07 100644 --- a/Lib/email/Header.py +++ b/Lib/email/Header.py @@ -92,7 +92,7 @@ def decode_header(header): if unenc: # Should we continue a long line? if decoded and decoded[-1][1] is None: - decoded[-1] = (decoded[-1][0] + dec, None) + decoded[-1] = (decoded[-1][0] + SPACE + unenc, None) else: decoded.append((unenc, None)) if parts: |