From 1338946c7bd0f6545d1dcde5d0bd62ff7a7db510 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 17 Oct 2004 16:24:25 +0000 Subject: Use proper value for False --- Lib/optparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/optparse.py b/Lib/optparse.py index f30fc45..d0fb12f 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) -- cgit v0.12