mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-09 11:48:20 +00:00
maybe fix it
This commit is contained in:
parent
bb63cfb8f5
commit
13376d0c1f
@ -10,6 +10,7 @@ from app.luclient import translate_from_locale
|
|||||||
import xmltodict
|
import xmltodict
|
||||||
import xml.etree.ElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
import json
|
import json
|
||||||
|
from xml.dom import minidom
|
||||||
|
|
||||||
|
|
||||||
character_blueprint = Blueprint('characters', __name__)
|
character_blueprint = Blueprint('characters', __name__)
|
||||||
@ -238,7 +239,7 @@ def upload(id):
|
|||||||
flash("You accept all consequences from these actions", "danger")
|
flash("You accept all consequences from these actions", "danger")
|
||||||
log_audit(f"Updated {character_data.id}'s xml data")
|
log_audit(f"Updated {character_data.id}'s xml data")
|
||||||
return redirect(url_for('characters.view', id=id))
|
return redirect(url_for('characters.view', id=id))
|
||||||
form.char_xml.data = ET.tostring(ET.indent(ET.XML(character_data.xml_data)), encoding='unicode')
|
form.char_xml.data = minidom.parseString(character_data.xml_data).toprettyxml(indent=" ")
|
||||||
return render_template("character/upload.html.j2", form=form)
|
return render_template("character/upload.html.j2", form=form)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user