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

« back to all changes in this revision

Viewing changes to auto-sync

  • Committer: Steve Langasek
  • Date: 2017-12-13 19:26:54 UTC
  • mfrom: (1128.1.1 ubuntu-archive-tools)
  • Revision ID: steve.langasek@canonical.com-20171213192654-euwax4gn8icbq513
MergeĀ lp:~vorlon/ubuntu-archive-tools/sync-removals-by-default

Show diffs side-by-side

added added

removed removed

Lines of Context:
644
644
                    options.target.distribution.web_link, src)
645
645
                print(" ... plus %d more; see %s" %
646
646
                      (len(to_src) - 10, history_url))
647
 
            answer = question(options, "OK", "yn", "n")
648
 
            new_ok = (answer == "y")
649
647
        else:
650
648
            print("No previous publications in %s" %
651
649
                  options.target.distribution.display_name)
652
 
            answer = question(options, "OK", "yn", "y")
653
 
            new_ok = (answer != "n")
 
650
        answer = question(options, "OK", "yn", "y")
 
651
        new_ok = (answer != "n")
654
652
        if new_ok:
655
653
            if sync_one_difference(
656
654
                    options, binary_map, difference, new_source_names):