/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/tests/blackbox/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2019-05-29 03:28:14 UTC
  • mfrom: (7303 work)
  • mto: This revision was merged to the branch mainline in revision 7305.
  • Revision ID: jelmer@jelmer.uk-20190529032814-fzqbrgf9647u9ptq
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        self.addCleanup(setattr, MyLogFormatter, "__new__", None)
86
86
 
87
87
        def getme(branch):
88
 
                # Always return our own log formatter class hijacking the
89
 
                # default behavior (which requires setting up a config
90
 
                # variable)
 
88
            # Always return our own log formatter class hijacking the
 
89
            # default behavior (which requires setting up a config
 
90
            # variable)
91
91
            return MyLogFormatter
92
92
        self.overrideAttr(log.log_formatter_registry, 'get_default', getme)
93
93