~jcsackett/lp-release-manager-tools/bugs-for-juju-reports

« back to all changes in this revision

Viewing changes to lp_release_tools/pull_bugs.py

  • Committer: j.c.sackett
  • Date: 2014-02-12 21:57:00 UTC
  • Revision ID: jcsackett@canonical.com-20140212215700-9r8omz2qb67yed19
Remove the service root option, since that's not used in the script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
    usage = "usage: %%prog [options] project\n%s" % example
84
84
    parser = OptionParser(usage=usage)
85
85
    parser.add_option(
86
 
        "-r", "--service-root", dest="root",
87
 
        help="The service to use.")
88
 
    parser.add_option(
89
86
        "-o", "--outfile", dest="outfile",
90
87
        help="The name of the file to write the json data to.")
91
88
    parser.add_option(
110
107
        "-s", "--statuses", dest="statuses", action="append",
111
108
        type="string", help="Match bugs with all of the listed statues.")
112
109
    parser.set_defaults(
113
 
        root='https://api.launchpad.net',
114
110
        outfile='bug-data.json',
115
111
        union_file=None,
116
112
        since=None,