(irrelevant fixes)

This commit is contained in:
Lephenixnoir 2021-01-29 14:29:25 +01:00
parent 8eed69b7a0
commit 2596a53c6b
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 3 additions and 3 deletions

View File

@ -30,8 +30,8 @@ syntax (names can contain dots). For example:
fxconv -f myfont.png -o myfont.o charset:ascii grid.padding:1 height:7
Some formats differ between platforms so you should specify it when possible:
--fx, --fx9860G Casio fx-9860G family (black-and-white calculators)
--cg, --fxCG50 Casio fx-CG 50 family (16-bit color calculators)
--fx Casio fx-9860G family (black-and-white calculators)
--cg Casio fx-CG 50 family (16-bit color calculators)
""".strip()
# Simple error-warnings system

View File

@ -1100,7 +1100,7 @@ def elf(data, output, symbol, toolchain=None, arch=None, section=None,
os.remove(fp_asm.name + ".o")
if proc.returncode != 0:
raise FxconvError("ld returned {proc.returncode}")
raise FxconvError(f"ld returned {proc.returncode}")
fp_asm.close()