~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

Merge from mbp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    if sys.platform == 'win32':
58
58
        file_list = glob_expand_for_win32(file_list)
59
59
    if not file_list:
60
 
        file_list = ['.']
 
60
        file_list = [u'.']
61
61
    file_list = list(file_list)
62
62
    return file_list
63
63