~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/ftpmaster-tools/queue

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-02 15:19:38 UTC
  • mfrom: (13144.1.3 notify-announce-list)
  • Revision ID: launchpad@pqm.canonical.com-20110602151938-tawdrs82nnt4fp3q
[r=wgrant][no-qa] Drop announce_list from notify() and
        PackageUpload.acceptFromQueue(), leaving it up to notify() internals.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
                      default=False,
60
60
                      help="Ignore errors when performing a list of commands.")
61
61
 
62
 
    parser.add_option("-A", "--announcelist",
63
 
                      dest="announcelist", metavar="ANNOUNCELIST",
64
 
                      default=None,
65
 
                      help=("Overrides the announcement list for accepts, "
66
 
                            "defaults to the distribution 'changeslist'"))
67
 
 
68
62
    parser.add_option("-f", "--file", metavar="FILE", default=None,
69
63
                      help="file containing a sequence of command lines.")
70
64
 
98
92
 
99
93
    cmd_runner = CommandRunner(
100
94
        queue, options.distribution_name, options.suite_name,
101
 
        options.announcelist, no_mail, options.component_name,
102
 
        options.section_name, options.priority_name, log=log)
 
95
        no_mail, options.component_name, options.section_name,
 
96
        options.priority_name, log=log)
103
97
 
104
98
    print ("Initialising connection to queue %s" % options.queue_name)
105
99