1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-13 01:54:09 +02:00

Update converter.py

This commit is contained in:
Mitch Bradley
2023-02-01 19:29:21 -10:00
committed by GitHub
parent e37a6ed2b7
commit 17d8c2af8f

View File

@@ -36,7 +36,7 @@ def convertMachine(baseName, verbose=True, extraArgs=None):
if proc.returncode: if proc.returncode:
print('Converter failed with exit code', proc.returncode) print('Converter failed with exit code', proc.returncode)
with open(out_filename, 'r') as f: with open(out_filename, 'r') as f:
print(f.read()) print(f.read())
else: else:
print("FluidNC Configuration written to", out_filename) print("FluidNC Configuration written to", out_filename)
return proc.returncode return proc.returncode