~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Vincent Ladeuil
  • Date: 2010-03-01 09:02:18 UTC
  • mto: (5064.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5065.
  • Revision ID: v.ladeuil+lp@free.fr-20100301090218-pq3ib5y07dx3wbp6
Delete spurious spaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
369
369
        # List of standard options directly supported
370
370
        self.supported_std_options = []
371
371
        self._operation = cleanup.OperationWithCleanups(self.run)
372
 
    
 
372
 
373
373
    def add_cleanup(self, cleanup_func, *args, **kwargs):
374
374
        """Register a function to call after self.run returns or raises.
375
375
 
389
389
        resources (such as writing results to self.outf).
390
390
        """
391
391
        self._operation.cleanup_now()
392
 
        
 
392
 
393
393
    @deprecated_method(deprecated_in((2, 1, 0)))
394
394
    def _maybe_expand_globs(self, file_list):
395
395
        """Glob expand file_list if the platform does not do that itself.