A fix for SF bug #472560, extra newlines returned by get_param() when
the separating semi-colon shows up on a continuation line (legal, but
weird).

Bug reported and fixed by Matthew Cowles.  Test case and sample email
included.
diff --git a/Lib/email/Message.py b/Lib/email/Message.py
index 00efbcc..6f0db85 100644
--- a/Lib/email/Message.py
+++ b/Lib/email/Message.py
@@ -17,7 +17,7 @@
 import Utils
 
 SEMISPACE = '; '
-paramre = re.compile(r';\s*')
+paramre = re.compile(r'\s*;\s*')