diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-10-17 16:24:25 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-10-17 16:24:25 (GMT) |
commit | 1338946c7bd0f6545d1dcde5d0bd62ff7a7db510 (patch) | |
tree | 1b2d898da9c517a285100927f404ae9e952fbf98 /Lib/optparse.py | |
parent | 2fa0b9d0bd7a6d2f72fd9eef51b720f59566e154 (diff) | |
download | cpython-1338946c7bd0f6545d1dcde5d0bd62ff7a7db510.zip cpython-1338946c7bd0f6545d1dcde5d0bd62ff7a7db510.tar.gz cpython-1338946c7bd0f6545d1dcde5d0bd62ff7a7db510.tar.bz2 |
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 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) |