mirror of
https://github.com/tenox7/wrp.git
synced 2024-12-22 21:29:29 +00:00
Fix unicode encode error
This commit is contained in:
parent
aabc8cf021
commit
fec97243ba
4
wrp.py
4
wrp.py
@ -284,10 +284,10 @@ if sys.platform.startswith('linux') or sys.platform.startswith('freebsd'):
|
|||||||
if ISMAP == True:
|
if ISMAP == True:
|
||||||
mapfile.write("rect %s %i,%i %i,%i\n".decode('utf-8', errors='ignore') % (turl, xmin, ymin, xmax, ymax))
|
mapfile.write("rect %s %i,%i %i,%i\n".decode('utf-8', errors='ignore') % (turl, xmin, ymin, xmax, ymax))
|
||||||
else:
|
else:
|
||||||
httpout.write("<AREA SHAPE=\"RECT\""
|
httpout.write(("<AREA SHAPE=\"RECT\""
|
||||||
" COORDS=\"%i,%i,%i,%i\""
|
" COORDS=\"%i,%i,%i,%i\""
|
||||||
" ALT=\"%s\" HREF=\"%s\">\n".decode('utf-8', errors='ignore')
|
" ALT=\"%s\" HREF=\"%s\">\n".decode('utf-8', errors='ignore')
|
||||||
% (xmin, ymin, xmax, ymax, turl, turl))
|
% (xmin, ymin, xmax, ymax, turl, turl)).encode("utf-8"))
|
||||||
|
|
||||||
if ISMAP != True:
|
if ISMAP != True:
|
||||||
httpout.write("</MAP>\n")
|
httpout.write("</MAP>\n")
|
||||||
|
Loading…
Reference in New Issue
Block a user