summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-07-22 19:15:09 +0000
committerMatt Wilson <msw@redhat.com>2002-07-22 19:15:09 +0000
commit907533a4342bcc8c4b6947b6f5555a91949840d2 (patch)
tree35318b02dad74dfc436c5975dcbe1466bb13d9fa
parent93cf0a90fb94f2b17570b4c22a5075bcaf3074eb (diff)
downloadanaconda-907533a4342bcc8c4b6947b6f5555a91949840d2.tar.gz
anaconda-907533a4342bcc8c4b6947b6f5555a91949840d2.tar.xz
anaconda-907533a4342bcc8c4b6947b6f5555a91949840d2.zip
don't add so many newlines before/after unordered lists.
-rw-r--r--htmlbuffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/htmlbuffer.py b/htmlbuffer.py
index cb16ac82a..029064e50 100644
--- a/htmlbuffer.py
+++ b/htmlbuffer.py
@@ -24,7 +24,7 @@ import re
class HTMLBuffer(HTMLParser.HTMLParser):
ignoreTags = ('title',)
noTagTags = ('html', 'head', 'span')
- newlineTags = ('p', 'h1', 'h2', 'ul')
+ newlineTags = ('p', 'h1', 'h2')
whiteSpaceNuker = re.compile(r"""\s+""", re.MULTILINE)
def __init__(self):
self.buffer = gtk.TextBuffer(None)