Fix print statements

This commit is contained in:
Kyle Barron 2019-12-17 11:42:00 -07:00 committed by GitHub
parent 4404afe01e
commit ab5d28fdb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,10 +33,10 @@ def main():
osm_diff = set(osm_iconset_keys).difference(maki_names)
print('Names in Maki unused by OSM Libery:')
sorted(maki_diff)
print(sorted(maki_diff))
print('\nNames in Maki unused by OSM Libery:')
sorted(osm_diff)
print(sorted(osm_diff))
if __name__ == '__main__':