Results 2 issues of Mark Paschal

Hi! I tried to use the `load_authors.py` script for the first time and got this error: ``` Traceback (most recent call last): File "load_tweets.py", line 180, in l = loadTweets(debug=True)...

When I run this script: ``` #!/usr/bin/env python from flask import Flask from flask.ext.rauth import RauthOAuth2 app = Flask(__name__) app.config.update(GITHUB_CONSUMER_KEY='foo', GITHUB_CONSUMER_SECRET='bar') github = RauthOAuth2( name='github', base_url='https://api.github.com/', authorize_url='https://github.com/login/oauth/authorize', access_token_url='https://github.com/login/oauth/access_token', ) if...