Remove some debug messages

This commit is contained in:
2010-03-05 17:33:47 +01:00
parent 030963730b
commit 38281f0e7e

View File

@@ -39,7 +39,6 @@ class Inbox():
url = "%s/%s" % (self.REDDIT_API_LOGIN, username)
print url
req = urllib2.Request( url, urllib.urlencode(data))
jsondoc = json.load(self.opener.open(req))
@@ -53,7 +52,6 @@ class Inbox():
self.__inbox_cache = []
for msg in inbox['children']:
print msg['data']
self.__inbox_cache.append(Message(msg['data']))
return self.__inbox_cache