[v0.1.0a3] Changed default output file name of make_xml
to @code.xml
This commit is contained in:
parent
125667f474
commit
5ee33d27fb
3 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
## v0.1.0a3
|
||||||
|
- Changed default output file name of `make_xml` to `@code.xml`
|
||||||
## v0.1.0a2
|
## v0.1.0a2
|
||||||
- Explicitly set the default file encoding to utf8
|
- Explicitly set the default file encoding to utf8
|
||||||
## v0.1.0a1
|
## v0.1.0a1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = supSMSGecko
|
name = supSMSGecko
|
||||||
version = 0.1.0a2
|
version = 0.1.0a3
|
||||||
author = sup39
|
author = sup39
|
||||||
author_email = sms@sup39.dev
|
author_email = sms@sup39.dev
|
||||||
description = A helper library to write Gecko code for Super Mario Sunshine
|
description = A helper library to write Gecko code for Super Mario Sunshine
|
||||||
|
|
|
@ -17,7 +17,7 @@ def build(main, version):
|
||||||
|
|
||||||
def make_xml(
|
def make_xml(
|
||||||
main, versions=VERSIONS,
|
main, versions=VERSIONS,
|
||||||
info_xml='info.xml', out_xml='out.xml',
|
info_xml='info.xml', out_xml='@code.xml',
|
||||||
indent=4, tag='code', encoding='utf8',
|
indent=4, tag='code', encoding='utf8',
|
||||||
):
|
):
|
||||||
if type(indent) == int: indent = ' '*indent
|
if type(indent) == int: indent = ' '*indent
|
||||||
|
|
Loading…
Add table
Reference in a new issue