/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

Better error message when filenames do not use the filesystem encoding

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