sort output
This commit is contained in:
parent
9addcd718c
commit
fd0772ebab
1 changed files with 2 additions and 2 deletions
|
@ -556,13 +556,13 @@ class Client(object):
|
||||||
example = example_path(self)
|
example = example_path(self)
|
||||||
print('Files need to be in a folder structure like this:\n%s\n' % example)
|
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('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('')
|
print('')
|
||||||
|
|
||||||
if unsupported:
|
if unsupported:
|
||||||
files = sorted(set(files) - set(unsupported))
|
files = sorted(set(files) - set(unsupported))
|
||||||
print('The following files are in an unsupported format and will not be synced:')
|
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('')
|
print('')
|
||||||
'''
|
'''
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue