/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 bzrlib/transport/chroot.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
root.
19
19
"""
20
20
 
21
 
from __future__ import absolute_import
22
 
 
23
 
from . import (
 
21
from bzrlib.transport import (
24
22
    pathfilter,
25
23
    register_transport,
26
24
    )
65
63
 
66
64
def get_test_permutations():
67
65
    """Return the permutations to be used in testing."""
68
 
    from breezy.tests import test_server
 
66
    from bzrlib.tests import test_server
69
67
    return [(ChrootTransport, test_server.TestingChrootServer)]