/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/errors.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
        self.current = current
199
199
 
200
200
 
201
 
class InProcessTransport(BzrError):
202
 
 
203
 
    _fmt = "The transport '%(transport)s' is only accessible within this " \
204
 
        "process."
205
 
 
206
 
    def __init__(self, transport):
207
 
        self.transport = transport
208
 
 
209
 
 
210
201
class InvalidEntryName(BzrError):
211
202
    
212
203
    _fmt = "Invalid entry name: %(name)s"