From 780ccb392eb3180214e34cf145863b34e27d6463 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Tue, 1 Aug 2017 19:01:00 -0230 Subject: [PATCH] integrations/google: Upgrade to argparse. --- zulip/integrations/google/google-calendar | 38 +++++++++++------------ 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/zulip/integrations/google/google-calendar b/zulip/integrations/google/google-calendar index 73cc5b5..ca631fc 100755 --- a/zulip/integrations/google/google-calendar +++ b/zulip/integrations/google/google-calendar @@ -8,7 +8,7 @@ import dateutil.parser import httplib2 import itertools import logging -import optparse +import argparse import os import pytz from six.moves import urllib @@ -40,9 +40,9 @@ sent = set() # type: Set[Tuple[int, datetime.datetime]] sys.path.append(os.path.dirname(__file__)) -parser = optparse.OptionParser(r""" +parser = zulip.add_default_arguments(argparse.ArgumentParser(r""" -%prog \ +google-calendar \ --user foo@zulip.com \ --calendar calendarID@example.calendar.google.com @@ -55,27 +55,25 @@ parser = optparse.OptionParser(r""" revealed to local users through the command line. Depends on: google-api-python-client -""") +""")) -parser.add_option('--interval', - dest='interval', - default=30, - type=int, - action='store', - help='Minutes before event for reminder [default: 30]', - metavar='MINUTES') +parser.add_argument('--interval', + dest='interval', + default=30, + type=int, + action='store', + help='Minutes before event for reminder [default: 30]', + metavar='MINUTES') -parser.add_option('--calendar', - dest = 'calendarID', - default = 'primary', - type = str, - action = 'store', - help = 'Calendar ID for the calendar you want to receive reminders from.') +parser.add_argument('--calendar', + dest = 'calendarID', + default = 'primary', + type = str, + action = 'store', + help = 'Calendar ID for the calendar you want to receive reminders from.') -parser.add_option_group(zulip.generate_option_group(parser)) - -(options, args) = parser.parse_args() +options = parser.parse_args() if not (options.zulip_email): parser.error('You must specify --user')