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

(gz) Fix bzr mv error report on bzr mv of a removed non-ascii file (Martin
 Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2795
2795
                # something is wrong, so lets determine what exactly
2796
2796
                if not self.has_filename(from_rel) and \
2797
2797
                   not self.has_filename(to_rel):
2798
 
                    raise errors.BzrRenameFailedError(from_rel,to_rel,
2799
 
                        errors.PathsDoNotExist(paths=(str(from_rel),
2800
 
                        str(to_rel))))
 
2798
                    raise errors.BzrRenameFailedError(from_rel, to_rel,
 
2799
                        errors.PathsDoNotExist(paths=(from_rel, to_rel)))
2801
2800
                else:
2802
2801
                    raise errors.RenameFailedFilesExist(from_rel, to_rel)
2803
2802
            rename_entry.only_change_inv = only_change_inv