>>> import reddit
>>> posts = reddit.get_posts("UCSantaBarbara")
>>> for p in postsL:
...
KeyboardInterrupt
>>> for p in posts:
... print(p)
...
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "./reddit.py", line 325, in __str__
return unicode(self).encode('utf-8')
NameError: global name 'unicode' is not defined
See transcript: