summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-01-09 20:58:27 +0100
committerPanFritz <redstonenoobpan@gmail.com>2015-01-09 20:58:27 +0100
commit4ad849285c632b80a7df4b6e4116a5a284e27ee9 (patch)
tree259dfda15b225109468488adf54caac4f5389b75 /check.py
parent1afd238799785b0d321c53f2440670edd06820da (diff)
Testing converting results to string
Diffstat (limited to 'check.py')
-rw-r--r--check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/check.py b/check.py
index 56f4781..ec29d64 100644
--- a/check.py
+++ b/check.py
@@ -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!"