Start: Fixed utf8 bug

This commit is contained in:
Yorik van Havre 2014-03-05 11:53:09 -03:00
parent 4699856799
commit e99daa4417

View File

@ -277,6 +277,11 @@ page = """
right: 10px;
}
#description img {
max-width: 300px;
clear: both;
}
</style>
</head>
@ -540,7 +545,7 @@ def setColors(html):
defaults["#windowcolor"] = palette.window().color().name()
defaults["#windowtextcolor"] = palette.windowText().color().name()
for k,v in defaults.iteritems():
html = html.replace(k,v)
html = html.replace(k,str(v))
return html
def handle():