jrosti / lumikki

Automatically exported from code.google.com/p/lumikki
0 stars 0 forks source link

in *.cgi files return values can be numbers which fails str + int operation #30

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
change lines: 

msg = 'plaaplaa' + ret 

to 

msg = 'plaaplaa' + str(ret)

Original issue reported on code.google.com by jhkoi...@gmail.com on 20 Apr 2011 at 2:19