summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2003-04-02 04:51:33 (GMT)
committerBarry Warsaw <barry@python.org>2003-04-02 04:51:33 (GMT)
commit7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3 (patch)
tree9956d1a7f7bd283997ae63637277ae413c6016a7 /Lib/email
parenta02b7a8f6dea401d090e5f1dc26812dbdac38981 (diff)
downloadcpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.zip
cpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.tar.gz
cpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.tar.bz2
Fix a comment
Diffstat (limited to 'Lib/email')
-rw-r--r--Lib/email/_compat22.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/_compat22.py b/Lib/email/_compat22.py
index e0f72a8..fc1d32a 100644
--- a/Lib/email/_compat22.py
+++ b/Lib/email/_compat22.py
@@ -9,7 +9,7 @@ from __future__ import division
from cStringIO import StringIO
from types import StringTypes
-# Python 2.2.x where x < 2 lacks True/False
+# Python 2.2.x where x < 1 lacks True/False
try:
True, False
except NameError: