summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-01-09 21:06:08 +0100
committerPanFritz <redstonenoobpan@gmail.com>2015-01-09 21:06:08 +0100
commitc205f3457e713c2ee66d3415181bfa466bcee4cf (patch)
treebeaaafcaa3482173979339175b37ad32a4a66dab /check.py
parentf42b1272b5c2714252d0c595ec7421ac7d735035 (diff)
Debug log results
Diffstat (limited to 'check.py')
-rw-r--r--check.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/check.py b/check.py
index 9402ad1..ff40f7b 100644
--- a/check.py
+++ b/check.py
@@ -46,10 +46,11 @@ def get_website_data(player):
curs.close()
conn.close()
if len(results) > 0:
- try:
+ print (results) #Test
+ try:
return {
- "link": "http://redstoner.com/users/%s" % str(results[0]),
- "email": str(results[1])
+ "link": "http://redstoner.com/users/%s" % results[0],
+ "email": results[1]
}
except:
print "failed returning!"