small changes to html output

This commit is contained in:
Kenneth Reitz
2010-11-21 18:58:30 -05:00
parent 0784d4b32c
commit 22d337790a
+2 -3
View File
@@ -3,7 +3,7 @@
""" Tablib - HTML export support.
"""
import cStringIO
from StringIO import StringIO
from tablib.packages import markup
import tablib
@@ -12,10 +12,9 @@ title = 'html'
extentions = ('html', )
def export_set(dataset):
"""HTML representation of a Dataset."""
stream = cStringIO.StringIO()
stream = StringIO()
page = markup.page()
page.table.open()