~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: John Arbash Meinel
  • Date: 2009-11-04 22:26:25 UTC
  • mto: This revision was merged to the branch mainline in revision 4787.
  • Revision ID: john@arbash-meinel.com-20091104222625-7j542nrr0ycx474w
Remove '_maybe_glob' in favor of globbing at the commandline level.

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
        """
393
393
        if not file_list:
394
394
            file_list = []
395
 
        if sys.platform == 'win32':
396
 
            file_list = win32utils.glob_expand(file_list)
 
395
        # if sys.platform == 'win32':
 
396
        #     file_list = win32utils.glob_expand(file_list)
397
397
        return list(file_list)
398
398
 
399
399
    def _usage(self):