~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/check-newsbugs.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-04-18 04:55:00 UTC
  • mfrom: (5784.2.1 754188-apport-test)
  • Revision ID: pqm@pqm.ubuntu.com-20110418045500-ce6lkgyiq7f47q43
(mbp) Rewrite test_report_bug_legacy away from using doctest (see bug
 764188) (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
try:
13
13
    import hydrazine
14
14
except ImportError:
15
 
    print "Please install hydrazine from lp:launchpadlib"
 
15
    print "Please install hydrazine from lp:hydrazine"
16
16
    sys.exit(1)
17
17
 
18
18
 
28
28
 
29
29
 
30
30
def report_notmarked(bug, task, section):
31
 
    print 
 
31
    print
32
32
    print "Bug %d was mentioned in NEWS but is not marked fix released:" % (bug.id, )
33
33
    print "Launchpad title: %s" % bug.title
34
34
    print "NEWS summary: "
83
83
            print '%s is private and cannot be accessed' % (bugno,)
84
84
            continue
85
85
        raise
86
 
     
 
86
 
87
87
    found_bzr = False
88
88
    fix_released = False
89
89
    for task in bug.bug_tasks: