For folder names containing non-ASCII chars, I got the following error:
print('Folder: {} ({}, {})'.format(item['title'], current_prefix, item['id']))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xfc' in position 1: ordinal not in range(128)
I added the u prefix to the format string to avoid this error.
For folder names containing non-ASCII chars, I got the following error:
I added the
u
prefix to the format string to avoid this error.