From 78dca2345a6e58b2f1ffd7d5b58a82a44c332966 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Wed, 7 Apr 2010 23:55:28 +0000 Subject: [PATCH] Fixed page source layout for stylesheet links line up. svn: r15056 --- src/plugins/webreport/NarrativeWeb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 654e7c964..0526e1ffa 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -962,9 +962,9 @@ class BasePage(object): # create stylesheet and favicon links links = Html("link", href = url4, type = "image/x-icon", rel = "shortcut icon") + ( - Html("link", href = url1, type = "text/css", media = "screen", rel = "stylesheet"), - Html("link", href = url2, type = "text/css", media = "screen", rel = "stylesheet"), - Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet") + Html("link", href = url1, type = "text/css", media = "screen", rel = "stylesheet", indent = False), + Html("link", href = url2, type = "text/css", media = "screen", rel = "stylesheet", indent = False), + Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet", indent = False) ) # add additional meta and link tags