Comment 5 for bug 1406505

Revision history for this message
Kenneth Loafman (kenneth-loafman) wrote :

Mmm, confused here. The current ufn() in duplicity looks like:

def ufn(filename):
    "Convert a (bytes) filename to unicode for printing"
    assert not isinstance(filename, unicode)
    return filename.decode(sys.getfilesystemencoding(), 'replace')

How does this apply to duplicity?