~xnox/ubuntu-archive-tools/sru-report-autopkgtest-vomit

« back to all changes in this revision

Viewing changes to queuediff

  • Committer: Colin Watson
  • Date: 2012-12-13 14:50:11 UTC
  • Revision ID: cjwatson@canonical.com-20121213145011-8xvn3h432hz4197x
make all scripts pass current stricter pep8(1) in raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
 
247
247
        print('''After accepting this SRU from the queue, run:
248
248
  sru-accept -v %s -s %s -p %s %s''' %
249
 
            (changes['version'], changes['distribution'].split('-')[0],
250
 
             sourcepkg, ' '.join(changes['bugs'])), file=sys.stderr)
 
249
              (changes['version'], changes['distribution'].split('-')[0],
 
250
               sourcepkg, ' '.join(changes['bugs'])), file=sys.stderr)
251
251
 
252
252
# for PPAs, print matching copy command
253
253
if opts.ppa:
254
 
    print('''\nTo copy from PPA to distribution, run:
255
 
  copy-package -b --ppa=%s --ppa-name=%s -s %s --to-primary --to-suite %s-proposed -y %s
256
 
''' % (user, ppaname, opts.release, opts.release, sourcepkg), file=sys.stderr)
 
254
    print('\nTo copy from PPA to distribution, run:\n'
 
255
          '  copy-package -b --ppa=%s --ppa-name=%s -s %s --to-primary '
 
256
          '--to-suite %s-proposed -y %s\n' %
 
257
          (user, ppaname, opts.release, opts.release, sourcepkg),
 
258
          file=sys.stderr)