Rename the 'humbug' API module to 'zulip'.

(imported from commit b3a3d7c05459cbb0110cd0fbe2197d779f3a6264)
This commit is contained in:
Tim Abbott 2013-08-07 11:51:03 -04:00 committed by Tim Abbott
parent 9aaefde9b2
commit 084847b0d7
26 changed files with 78 additions and 78 deletions

View file

@ -4,7 +4,7 @@ import sys
import optparse
import ConfigParser
import humbug
import zulip
CONFIGFILE = os.path.expanduser("~/.humbug_twitterrc")
@ -76,7 +76,7 @@ parser.add_option('--limit-tweets',
type='int',
help='Maximum number of tweets to send at once')
parser.add_option_group(humbug.generate_option_group(parser))
parser.add_option_group(zulip.generate_option_group(parser))
(opts, args) = parser.parse_args()
if not opts.search_terms:
@ -118,7 +118,7 @@ if not user.GetId():
Please double-check and try again."
sys.exit()
client = humbug.Client(
client = zulip.Client(
email=opts.user,
api_key=opts.api_key,
site=opts.site,