/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 brzlib/transport/log.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 12:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521124127-iv8etg0vwymyai6y
s/bzr/brz/ in apport config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Transport decorator that logs transport operations to .bzr.log."""
18
18
 
 
19
from __future__ import absolute_import
19
20
 
20
21
# see also the transportstats plugin, which gives you some summary information
21
22
# in a machine-readable dump
25
26
import time
26
27
import types
27
28
 
28
 
from bzrlib.trace import mutter
29
 
from bzrlib.transport import decorator
 
29
from brzlib.trace import mutter
 
30
from brzlib.transport import decorator
30
31
 
31
32
 
32
33
class TransportLogDecorator(decorator.TransportDecorator):
150
151
 
151
152
def get_test_permutations():
152
153
    """Return the permutations to be used in testing."""
153
 
    from bzrlib.tests import test_server
 
154
    from brzlib.tests import test_server
154
155
    return [(TransportLogDecorator, test_server.LogDecoratorServer)]