~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-06-17 10:33:38 UTC
  • mfrom: (5299.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100617103338-k4kkjx9fkt5qv33e
(vila) Fix typo in treebuilder docstring

Show diffs side-by-side

added added

removed removed

Lines of Context:
1923
1923
class CantMoveRoot(BzrError):
1924
1924
 
1925
1925
    _fmt = "Moving the root directory is not supported at this time"
1926
 
    
1927
 
    
 
1926
 
 
1927
 
1928
1928
class TransformRenameFailed(BzrError):
1929
1929
 
1930
1930
    _fmt = "Failed to rename %(from_path)s to %(to_path)s: %(why)s"
1931
 
    
 
1931
 
1932
1932
    def __init__(self, from_path, to_path, why, errno):
1933
1933
        self.from_path = from_path
1934
1934
        self.to_path = to_path