~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)

> When you use flat string on Windows for base part of file names then all
> derived file names is always representing as flat string. On Linux/Cygwin as
> I can see in situations when path cannot be represented as flat string (or in
> ascii encoding?) it silently converted to unicode. As result we have
> different behaviour with non-ascii (non-english) file names.

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