chg: [tools] utf-8 by default

pull/176/head
Alexandre Dulaunoy 2019-11-05 14:47:54 +01:00
parent cf20bb8e0d
commit a89594422e
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import json
from pathlib import Path
@ -45,4 +46,4 @@ if __name__ == "__main__":
taxonomies = fetchTaxonomies()
manifest = generateManifest(taxonomies)
saveManifest(manifest)
awesomePrint('> Manifest saved!')
awesomePrint('> Manifest saved!')

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import json
from pathlib import Path
@ -46,4 +47,4 @@ if __name__ == "__main__":
taxonomies = fetchTaxonomies()
markdown = generateMarkdown(taxonomies)
saveMarkdown(markdown)
awesomePrint('> Markdown saved!')
awesomePrint('> Markdown saved!')