more updates

This commit is contained in:
Ryan Holmes
2019-03-02 14:31:16 -05:00
parent 78836add28
commit 9fc16cb287
6 changed files with 8 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ import os
with open("version.yml", 'r+') as file:
data = yaml.load(file)
data = yaml.load(file, Loader=yaml.FullLoader)
file.seek(0)
file.truncate()
# todo: run Version() on the tag to ensure that it's of proper formatting - fail a test if not and prevent building

View File

@@ -10,7 +10,7 @@ import json
iconDict = {}
stream = open('iconIDs.yaml', 'r')
docs = yaml.load_all(stream)
docs = yaml.load_all(stream, Loader=yaml.FullLoader)
for doc in docs:
for k,v in list(doc.items()):