~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Marius Kruger
  • Date: 2007-04-18 20:12:15 UTC
  • mto: This revision was merged to the branch mainline in revision 2455.
  • Revision ID: amanic@gmail.com-20070418201215-upzz7pof6a4433n7
* Minor text fixes.
* Remove trailing whitespace added by this branch.
* Add tests for removing empty directories.
* workingtree.remove
  - Don't recurse into empty directories.
  - Use absolute path when deleting from the file system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1626
1626
        self.changes_as_text = tree_delta.get_changes_as_text()
1627
1627
        #self.paths_as_string = '\n'.join(changed_files)
1628
1628
        #self.paths_as_string = '\n'.join([quotefn(p) for p in changed_files])
1629
 
        
1630
 
    
 
1629
 
 
1630
 
1631
1631
class BzrBadParameterNotString(BzrBadParameter):
1632
1632
 
1633
1633
    _fmt = "Parameter %(param)s is not a string or unicode string."