From: Jan Paul Tuecking Date: Thu, 9 Jul 2009 10:09:31 +0000 (+0200) Subject: Fixed anchor in py X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c50922dd65ee282658e635f6f37efce159f77400;p=ipfire.org.git Fixed anchor in py --- diff --git a/www/web/elements.py b/www/web/elements.py index 0eef273a..40d573f9 100644 --- a/www/web/elements.py +++ b/www/web/elements.py @@ -7,7 +7,7 @@ from info import Info class Box(Data): def __init__(self, headline, subtitle=""): Data.__init__(self) - self.w("""

%s

""" % (headline,headline,)) + self.w("""

%s

""" % (headline,headline,)) if subtitle: self.w("""""" % (subtitle,))