/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Gustaf Thorslund
  • Date: 2010-10-23 21:24:09 UTC
  • mto: (0.54.78 trunk)
  • mto: This revision was merged to the branch mainline in revision 6630.
  • Revision ID: gustaf@thorslund.org-20101023212409-r9p7q4hi4zdxq6nf
Changed deprecated trace.info to trace.note.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib.commands import Command, register_command
23
23
from bzrlib.errors import BzrCommandError
24
24
from bzrlib.option import Option
25
 
from bzrlib.trace import info
 
25
from bzrlib.trace import note
26
26
 
27
27
from meta import *
28
28
 
332
332
        Returns boolean indicating if bisection is done."""
333
333
        bisect_log = BisectLog()
334
334
        if bisect_log.is_done():
335
 
            info("No further bisection is possible.\n")
 
335
            note("No further bisection is possible.\n")
336
336
            bisect_log._current.show_rev_log(self.outf)
337
337
            return True
338
338
 
434
434
 
435
435
    def run_bisect(self, script):
436
436
        import subprocess
437
 
        info("Starting bisect.")
 
437
        note("Starting bisect.")
438
438
        self.start()
439
439
        while True:
440
440
            try: