16
16
"""Implementation of Transport for the local filesystem.
19
25
from bzrlib.transport import Transport, register_transport, \
20
26
TransportError, NoSuchFile, FileExists
23
29
class LocalTransportError(TransportError):
26
33
class LocalTransport(Transport):
27
34
"""This is the transport agent for local filesystem access."""