/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 breezy/bisect.py

  • Committer: Martin
  • Date: 2017-08-26 14:03:58 UTC
  • mto: (6754.4.2 check)
  • mto: This revision was merged to the branch mainline in revision 6756.
  • Revision ID: gzlist@googlemail.com-20170826140358-1daez2kvxdf33xo0
Remove unicode type in more command arguments

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from .commands import Command
25
25
from .errors import BzrCommandError
26
26
from .option import Option
 
27
from .sixish import (
 
28
    text_type,
 
29
    )
27
30
from .trace import note
28
31
 
29
32
BISECT_INFO_PATH = "bisect"
319
322
 
320
323
    takes_args = ['subcommand', 'args*']
321
324
    takes_options = [Option('output', short_name='o',
322
 
                            help='Write log to this file.', type=unicode),
 
325
                            help='Write log to this file.', type=text_type),
323
326
                     'revision', 'directory']
324
327
 
325
328
    def _check(self, controldir):