From: Reinhold Kainhofer Date: Mon, 15 Sep 2008 11:56:16 +0000 (+0200) Subject: Fix build (add_header should always return something!) X-Git-Tag: release/2.11.59-1~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=eb3a1235e41081cace3d3989e1968ee06cd2e5d7;p=lilypond.git Fix build (add_header should always return something!) --- diff --git a/buildscripts/postprocess_html.py b/buildscripts/postprocess_html.py index abe843a3c8..dde215e565 100644 --- a/buildscripts/postprocess_html.py +++ b/buildscripts/postprocess_html.py @@ -148,7 +148,7 @@ def add_header (s, prefix): if css_re.search (s) == None: depth = (prefix.count ('/') - 1) * '../' s = end_head_tag_re.sub ((css_link % depth) + '', s) - return s + return s title_tag_re = re.compile ('.*?(.*?)', re.DOTALL) AT_web_title_re = re.compile ('@WEB-TITLE@')