Testing converting results to string

This commit is contained in:
PanFritz
2015-01-09 20:58:27 +01:00
parent 1afd238799
commit 4ad849285c

View File

@@ -48,8 +48,8 @@ def get_website_data(player):
if len(results) > 0:
try:
return {
"link": "http://redstoner.com/users/%s" % results[0],
"email": results[1]
"link": "http://redstoner.com/users/%s" % str(results[0]),
"email": str(results[1])
}
except:
print "failed returning!"