Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dbmanager: fix setting html attributes (fixes #8271)
  • Loading branch information
jef-n committed Jul 11, 2013
1 parent fd85aee commit 9e5e948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/html_elems.py
Expand Up @@ -75,7 +75,7 @@ def setAttr(self, name, value):
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):
Expand Down

0 comments on commit 9e5e948

Please sign in to comment.