diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-10-17 16:24:25 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-10-17 16:24:25 +0000 |
commit | 5ab60e4aaeca785f6a548344bba2a92c89ff038a (patch) | |
tree | b53321e1af5e4ec77f1dfbd9eac3b8f93f1fecc6 /Lib/optparse.py | |
parent | 4e433c48e8a8c73232416c811a6e74442c9c61a8 (diff) | |
download | cpython-5ab60e4aaeca785f6a548344bba2a92c89ff038a.tar.gz |
Use proper value for False
Diffstat (limited to 'Lib/optparse.py')
-rw-r--r-- | Lib/optparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |