summaryrefslogtreecommitdiffstats
path: root/htmlbuffer.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-06-14 21:11:42 +0000
committerMatt Wilson <msw@redhat.com>2002-06-14 21:11:42 +0000
commita5217a8fb8f0fce37a27884dc7b35e42a3b1f5ed (patch)
treec1d9b65e462873e7ecb314ebb6c252701f0829a2 /htmlbuffer.py
parentd25b31e29bb2d821757f8e337c04811696543131 (diff)
downloadanaconda-a5217a8fb8f0fce37a27884dc7b35e42a3b1f5ed.tar.gz
anaconda-a5217a8fb8f0fce37a27884dc7b35e42a3b1f5ed.tar.xz
anaconda-a5217a8fb8f0fce37a27884dc7b35e42a3b1f5ed.zip
nuke warning
Diffstat (limited to 'htmlbuffer.py')
-rw-r--r--htmlbuffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/htmlbuffer.py b/htmlbuffer.py
index bf42aabe5..b4a21fc7e 100644
--- a/htmlbuffer.py
+++ b/htmlbuffer.py
@@ -23,7 +23,7 @@ import re
class HTMLBuffer(HTMLParser.HTMLParser):
ignoreTags = ('title',)
- noTagTags = ('html', 'div', 'head')
+ noTagTags = ('html', 'div', 'head', 'span')
newlineTags = ('p', 'h1', 'h2', 'li')
whiteSpaceNuker = re.compile(r"""\s+""", re.MULTILINE)
def __init__(self):