]> granicus.if.org Git - python/commitdiff
Use proper value for False
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 17 Oct 2004 16:24:25 +0000 (16:24 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 17 Oct 2004 16:24:25 +0000 (16:24 +0000)
Lib/optparse.py

index f30fc458b22a5df7b58853f28efef865e79b0239..d0fb12f4950dd47e5af9b37db694c8f800e06105 100644 (file)
@@ -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)