In @DanielTOsborne the print statements in the source for errors were displaying in the report output because they were not set to stdout - https://github.com/DanielTOsborne/repgen5/commit/d23870bc8098ca93a90d13c3db8690b0e5d012c7#diff-880d7cc658c091fcf16614b8e1cf3da3cffa84a82e5ff1a64c191baf521a95cdR289 Need to go through and ensure all print statements are sent to stderr i.e. ```python print(string, file=sys.stderr) ```
In @DanielTOsborne the print statements in the source for errors were displaying in the report output because they were not set to stdout
Need to go through and ensure all print statements are sent to stderr
i.e.