This commit is contained in:
jb-alvarado 2020-04-15 21:55:05 +02:00
parent 124280910f
commit df2e42be77

View File

@ -24,7 +24,7 @@ def write_yaml(data):
config = GuiSettings.objects.filter(id=1).values()[0]
if os.path.isfile(config['playout_config']):
with open(config['playoutConfig'], 'w') as outfile:
with open(config['playout_config'], 'w') as outfile:
yaml.dump(data, outfile, default_flow_style=False,
sort_keys=False, indent=4)