From 85ba673b0a8fa8123bfe2d0434fe35d7f3cee68d Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 28 Feb 2001 08:26:44 +0000 Subject: Whitespace normalization. --- Lib/pydoc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/pydoc.py') diff --git a/Lib/pydoc.py b/Lib/pydoc.py index c5c9d1866f..701316e394 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -445,7 +445,7 @@ class HTMLDoc(Doc): modpkgs.append((modname, name, 0, 0)) modnames.append(modname) elif ispackage(path): - modpkgs.append((file, name, 1, 0)) + modpkgs.append((file, name, 1, 0)) modpkgs.sort() contents = self.multicolumn(modpkgs, self.modpkglink) result = result + self.bigsection( @@ -576,7 +576,7 @@ class HTMLDoc(Doc): if ispackage(path): found(file, 1) for file in files: path = os.path.join(dir, file) - if file[:1] != '_' and os.path.isfile(path): + if file[:1] != '_' and os.path.isfile(path): modname = modulename(file) if modname: found(modname, 0) -- cgit v1.2.1