This commit is contained in:
j 2017-02-25 11:25:33 +01:00
parent e72b594a79
commit e99cfb7bdf

View file

@ -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)))