diff options
author | Guido van Rossum <guido@python.org> | 2002-04-04 23:03:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-04-04 23:03:47 (GMT) |
commit | 72118e5bc7fff604058b821ac8fca6587eedf735 (patch) | |
tree | 8739fa5e775fa5641df12cdb0518977ece8d0783 | |
parent | a8e5d432a5fe61f60db21c417d54d72532f3dcd9 (diff) | |
download | cpython-72118e5bc7fff604058b821ac8fca6587eedf735.zip cpython-72118e5bc7fff604058b821ac8fca6587eedf735.tar.gz cpython-72118e5bc7fff604058b821ac8fca6587eedf735.tar.bz2 |
Fix a typo in Tim's fix.
-rwxr-xr-x | Demo/pdist/cvslib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/pdist/cvslib.py b/Demo/pdist/cvslib.py index c72cd6b..fa0e0f9 100755 --- a/Demo/pdist/cvslib.py +++ b/Demo/pdist/cvslib.py @@ -292,7 +292,7 @@ class CVS: if os.path.isdir(file): return True for pat in self.IgnoreList: if fnmatch.fnmatch(file, pat): return True - return Falso + return False # hexify and unhexify are useful to print MD5 checksums in hex format |