/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: Jelmer Vernooij
  • Date: 2018-11-12 01:41:38 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181112014138-3b0zyx91cu3wdq3k
More PEP8 fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
        bisect_log.save()
341
341
        return False
342
342
 
343
 
    def run(self, subcommand, args_list, directory='.', revision=None, output=None):
 
343
    def run(self, subcommand, args_list, directory='.', revision=None,
 
344
            output=None):
344
345
        """Handle the bisect command."""
345
346
 
346
347
        log_fn = None
401
402
        self._set_state(controldir, revspec, "yes")
402
403
 
403
404
    def no(self, controldir, revspec):
404
 
        """Mark that a given revision does not have the state we're looking for."""
 
405
        """Mark a given revision as wrong."""
405
406
        self._set_state(controldir, revspec, "no")
406
407
 
407
408
    def move(self, controldir, revspec):