From 8d3783825a20cf9f00f0b0b8f990ea29bdeb38c8 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Mon, 2 Jun 2008 16:39:24 -0700 Subject: [PATCH] Removing unnecessary "or None". --- view/Page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/Page.py b/view/Page.py index 14259ca..d4833e9 100644 --- a/view/Page.py +++ b/view/Page.py @@ -16,7 +16,7 @@ class Page( Html ): Head( Link( rel = u"stylesheet", type = u"text/css", href = u"/static/css/style.css" ), Meta( content = u"text/html; charset=UTF-8", http_equiv = u"content-type" ), - Script( type = u"text/javascript", src = u"https://ssl.google-analytics.com/urchin.js" ) or None, + Script( type = u"text/javascript", src = u"https://ssl.google-analytics.com/urchin.js" ), [ child for child in children if isinstance( child, head_types ) ], Title( title and u"%s: %s" % ( app_name, title ) or app_name ), """""",