/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Ā fromĀ test-tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
(use bzr checkout if you wish to build a working tree): %(path)s"""
306
306
 
307
307
 
 
308
class AtomicFileAlreadyClosed(PathError):
 
309
    """'%(function)s' called on an AtomicFile after it was closed: %(path)s"""
 
310
 
 
311
    def __init__(self, path, function):
 
312
        PathError.__init__(self, path=path, extra=None)
 
313
        self.function = function
 
314
 
 
315
 
308
316
class NoRepositoryPresent(BzrNewError):
309
317
    """No repository present: %(path)r"""
310
318
    def __init__(self, bzrdir):