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

@ -11,7 +11,7 @@ import time
import urlparse
import feedparser
import humbug
import zulip
RSS_DATA_DIR = os.path.expanduser(os.path.join('~', '.cache', 'humbug-rss'))
OLDNESS_THRESHOLD = 30 # days
@ -56,7 +56,7 @@ parser.add_option('--feed-file',
help='The file containing a list of RSS feed URLs to follow, one URL per line',
default=os.path.join(RSS_DATA_DIR, "rss-feeds"),
action='store')
parser.add_option_group(humbug.generate_option_group(parser))
parser.add_option_group(zulip.generate_option_group(parser))
(opts, args) = parser.parse_args()
def mkdir_p(path):
@ -131,7 +131,7 @@ try:
except IOError:
log_error_and_exit("Unable to read feed file at %s." % (opts.feed_file,))
client = humbug.Client(email=opts.email, api_key=opts.api_key,
client = zulip.Client(email=opts.email, api_key=opts.api_key,
site=opts.site)
first_message = True