_encode_chunks(): Throw out empty chunks.
diff --git a/Lib/email/Header.py b/Lib/email/Header.py
index 66a18c8..624e7c4 100644
--- a/Lib/email/Header.py
+++ b/Lib/email/Header.py
@@ -361,6 +361,8 @@
         #  =?charset2?b?SvxyZ2VuIEL2aW5n?="
         chunks = []
         for header, charset in newchunks:
+            if not header:
+                continue
             if charset is None or charset.header_encoding is None:
                 s = header
             else: