sort
This commit is contained in:
parent
e72b594a79
commit
e99cfb7bdf
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ unknown_tags = [t for t in tags if t not in known_tags]
|
|||
missing_tags = [t for t in known_tags if t not in tags]
|
||||
|
||||
if missing_tags:
|
||||
print('missing tags\n', ', '.join(missing_tags))
|
||||
print('missing tags\n', ', '.join(sorted(missing_tags)))
|
||||
|
||||
for letter in sorted(KEYWORDS):
|
||||
print('\n\n')
|
||||
|
@ -96,4 +96,4 @@ if clips0:
|
|||
print('\n\n%d clips with 0 duration' % len(clips0))
|
||||
print('\t' + '\n\t'.join(sorted(['https://cdosea.0x2620.org/' + c['id'] + ' ' + c['value'] for c in clips0])))
|
||||
if unknown_tags:
|
||||
print('\n\nunknown tags\n', ', '.join(unknown_tags))
|
||||
print('\n\nunknown tags\n', ', '.join(sorted(unknown_tags)))
|
||||
|
|
Loading…
Reference in a new issue