dbmanager: fix setting html attributes (fixes #8271)

This commit is contained in:
Juergen E. Fischer 2013-07-11 20:32:40 +02:00
parent fd85aeea95
commit 9e5e9484df

View File

@ -75,7 +75,7 @@ class HtmlElem:
def getAttrsHtml(self):
html = u''
for k, v in self.attrs.iteritems():
html += u' %s="%s"' % ( k, u' '.join(v) )
html += u' %s="%s"' % ( k, v )
return html
def openTagHtml(self):