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

@ -65,12 +65,12 @@ def main(argv=None):
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import humbug
import zulip
parser = optparse.OptionParser(usage=usage)
# Grab parser options from the API common set
parser.add_option_group(humbug.generate_option_group(parser))
parser.add_option_group(zulip.generate_option_group(parser))
parser.add_option('-m', '--message',
help='Specifies the message to send, prevents interactive prompting.')
@ -99,7 +99,7 @@ def main(argv=None):
if len(recipients) == 0 and not (options.stream and options.subject):
parser.error('You must specify a stream/subject or at least one recipient.')
client = humbug.init_from_options(options)
client = zulip.init_from_options(options)
if not options.message:
options.message = sys.stdin.read()