~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Implemented conflicts.restore

Show diffs side-by-side

added added

removed removed

Lines of Context:
400
400
    def __init__(self, graph):
401
401
        BzrNewError.__init__(self)
402
402
        self.graph = graph
 
403
 
 
404
class NotConflicted(BzrNewError):
 
405
    """File %(filename) is not conflicted."""
 
406
    def __init__(self, filename):
 
407
        BzrNewError.__init__(self)
 
408
        self.filename = filename