/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/http/__init__.py

Move bzrlib.transport.smart to bzrlib.smart

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from bzrlib.errors import (TransportNotPossible, NoSuchFile,
39
39
                           TransportError, ConnectionError, InvalidURL)
40
40
from bzrlib.branch import Branch
 
41
from bzrlib import smart
41
42
from bzrlib.trace import mutter
42
43
from bzrlib.transport import (
43
44
    get_transport,
44
45
    register_transport,
45
 
    smart,
46
46
    Server,
47
47
    Transport,
48
48
    )
49
49
from bzrlib.transport.http.response import (HttpMultipartRangeResponse,
50
50
                                            HttpRangeResponse)
51
 
from bzrlib.transport.smart import medium, protocol
 
51
from bzrlib.smart import medium, protocol
52
52
from bzrlib.ui import ui_factory
53
53
 
54
54