From: Neal Norwitz Date: Sun, 17 Oct 2004 16:24:25 +0000 (+0000) Subject: Use proper value for False X-Git-Tag: v2.4b2~103 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1338946c7bd0f6545d1dcde5d0bd62ff7a7db510;p=python Use proper value for False --- diff --git a/Lib/optparse.py b/Lib/optparse.py index f30fc458b2..d0fb12f495 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -767,7 +767,7 @@ class Values: elif isinstance(other, dict): return self.__dict__ == other else: - return false + return False def __ne__(self, other): return not (self == other)