From a1c7ab69f995c552517eed37b9e409af70e3ca91 Mon Sep 17 00:00:00 2001 From: guido Date: Sun, 4 Feb 2007 22:11:43 +0100 Subject: [PATCH] [svn r37926] Small visual tweaks. --HG-- branch : trunk --- py/apigen/html.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/py/apigen/html.py b/py/apigen/html.py index 1ee0f8f19..d522278e1 100644 --- a/py/apigen/html.py +++ b/py/apigen/html.py @@ -45,7 +45,7 @@ class H(html): class FunctionInfo(html.div): def __init__(self, valuedesc, csource, callstack): super(H.FunctionInfo, self).__init__( - H.Hideable('funcinfo', 'funcinfo', valuedesc, csource, + H.Hideable('funcinfo', 'funcinfo', valuedesc, H.br(), csource, callstack)) class PropertyDescription(html.div): @@ -54,9 +54,9 @@ class H(html): value = str(value) if len(value) > 100: value = value[:100] + '...' - super(H.PropertyDescription, self).__init__(H.strong(name), ': ', - H.em(value), - class_='property') + super(H.PropertyDescription, self).__init__(name, ': ', + H.em(value), + class_='property') class ParameterDescription(html.div): pass