~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Robert Collins
  • Date: 2005-09-23 09:25:16 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050923092516-e2c3c0f31288669d
Merge what applied of Alexander Belchenko's win32 patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
def glob_expand_for_win32(file_list):
24
24
    import glob
25
 
    
26
25
    expanded_file_list = []
27
26
    for possible_glob in file_list:
28
27
        glob_files = glob.glob(possible_glob)