From 2c2fd1a17f1b9a8739c5f795c9014375840288f9 Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Wed, 30 Nov 2005 23:13:04 +0000 Subject: [PATCH] Cleaned up a bit --- direct/src/directscripts/gendocs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/directscripts/gendocs.py b/direct/src/directscripts/gendocs.py index fbf0206378..84f43a13ac 100644 --- a/direct/src/directscripts/gendocs.py +++ b/direct/src/directscripts/gendocs.py @@ -641,11 +641,11 @@ def generateFunctionDocs(code, method): proto = code.getFunctionPrototype(method) comment = code.getFunctionComment(method) if (comment == ""): comment = "Undocumented function.
\n" - chunk = '
' + "\n" + chunk = '
' + "\n" chunk = chunk + '' + name + "
\n" chunk = chunk + proto + "
\n" chunk = chunk + comment - chunk = chunk + "
\n" + chunk = chunk + "

\n" return chunk def generateLinkTable(table, cols, urlprefix, urlsuffix):