Include posters in Twitter notifications

* Also cleanup Facebook
This commit is contained in:
JonnyWong16 2016-05-15 00:03:45 -07:00
parent 6f33d29a51
commit acc18b8d68
25 changed files with 6970 additions and 4745 deletions

10
lib/twitter/error.py Normal file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python
class TwitterError(Exception):
"""Base class for Twitter errors"""
@property
def message(self):
'''Returns the first argument used to construct this error.'''
return self.args[0]