03eaf903b91a4ee375a98c98e7379ada48cabce5
[rainbowstream.git] / rainbowstream / util.py
1 import json
2
3 from twitter.util import printNicely
4 from .colors import *
5
6
7 def printTwitterErrors(twitterException):
8 """
9 Display Twitter Errors nicely
10 """
11 try:
12 loadedJson = json.loads(twitterException.response_data)
13 for m in loadedJson.get('errors', dict()):
14 printNicely(
15 magenta("Error " + str(m.get('code')) + ": " + m.get('message')))
16 except ValueError:
17 printNicely(magenta("Error: " + twitterException.response_data))