diff --git a/pandora_client/__init__.py b/pandora_client/__init__.py index f926dbb..a8d18eb 100755 --- a/pandora_client/__init__.py +++ b/pandora_client/__init__.py @@ -556,13 +556,13 @@ class Client(object): example = example_path(self) print('Files need to be in a folder structure like this:\n%s\n' % example) print('The following files do not fit into the folder structure and will not be synced:') - print('\t' + '\n\t'.join([f[len(path):] for f in unknown])) + print('\t' + '\n\t'.join([f[len(path):] for f in sorted(unknown)])) print('') if unsupported: files = sorted(set(files) - set(unsupported)) print('The following files are in an unsupported format and will not be synced:') - print('\t' + '\n\t'.join([f[len(path):] for f in unsupported])) + print('\t' + '\n\t'.join([f[len(path):] for f in sorted(unsupported)])) print('') ''' '''