~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Aaron Bentley
  • Date: 2005-09-29 21:07:17 UTC
  • mfrom: (1393.1.6)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: abentley@panoramicfeedback.com-20050929210717-cd73981590f17017
Merged the weave changes

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)