Merge pull request #21265 from LarryWoestman/refactor

CAM:  updated opensbp post to work with current Processor.py
This commit is contained in:
sliptonic
2025-05-12 09:32:43 -05:00
committed by GitHub

View File

@@ -181,9 +181,12 @@ def export(objectslist, filename, argstring):
print("done postprocessing.")
# Write the output
gfile = pyopen(filename, "w")
gfile.write(final)
gfile.close()
if not filename == "-":
gfile = pyopen(filename, "w")
gfile.write(final)
gfile.close()
return final
def move(command):