~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2007-07-04 01:39:50 UTC
  • mto: This revision was merged to the branch mainline in revision 2581.
  • Revision ID: robertc@robertcollins.net-20070704013950-7pp23plwyqjvgkxg
Review feedback.

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
        if self.__doc__ == Command.__doc__:
242
242
            warn("No help message set for %r" % self)
243
243
 
244
 
    def _glob_expand_file_list_if_needed(self, file_list):
 
244
    def _maybe_expand_globs(self, file_list):
245
245
        """Glob expand file_list if the platform does not do that itself.
246
246
        
247
247
        :return: A possibly empty list of unicode paths.