From: Barry Warsaw Date: Thu, 11 Jul 2002 18:48:40 +0000 (+0000) Subject: _dispatch(): Comment improvements. X-Git-Tag: v2.3c1~5041 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f488b2c6d58d2a65ff21280471b0f0ebf7727462;p=python _dispatch(): Comment improvements. --- diff --git a/Lib/email/Generator.py b/Lib/email/Generator.py index 333137fff2..9377b53025 100644 --- a/Lib/email/Generator.py +++ b/Lib/email/Generator.py @@ -120,9 +120,9 @@ class Generator: def _dispatch(self, msg): # Get the Content-Type: for the message, then try to dispatch to - # self._handle_maintype_subtype(). If there's no handler for the full - # MIME type, then dispatch to self._handle_maintype(). If that's - # missing too, then dispatch to self._writeBody(). + # self._handle__(). If there's no handler for the + # full MIME type, then dispatch to self._handle_(). If + # that's missing too, then dispatch to self._writeBody(). ctype = msg.get_type() if ctype is None: # No Content-Type: header so use the default type, which must be