~bzr/ubuntu/maverick/bzr/beta-ppa

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

Merge from main PPA.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Implementation of Transport that adapts another transport to be readonly."""
18
18
 
 
19
from __future__ import absolute_import
 
20
 
19
21
from bzrlib.errors import TransportNotPossible, NoSmartMedium
20
22
from bzrlib.transport import decorator
21
23