remove superfluous special casing for lines beginning with '[*]'

This commit is contained in:
Peter Schneider-Kamp 2000-08-15 10:35:17 +00:00
parent 3517d583c5
commit d5840d43dd
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def fixfile(infile, outfile):
if not line:
break
if line[0] != "\f":
if line[0].strip() and line[:3] != '[*]':
if line[0].strip():
if line.strip() == LOCALVARS:
break
fo.write("</pre>\n<h3>%s</h3>\n<pre>" % line.strip())