From 72118e5bc7fff604058b821ac8fca6587eedf735 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 4 Apr 2002 23:03:47 +0000 Subject: [PATCH] Fix a typo in Tim's fix. --- Demo/pdist/cvslib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/pdist/cvslib.py b/Demo/pdist/cvslib.py index c72cd6b848e2ea..fa0e0f911dd9b8 100755 --- a/Demo/pdist/cvslib.py +++ b/Demo/pdist/cvslib.py @@ -292,7 +292,7 @@ def ignored(self, file): 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