Comment 2 for bug 1511139

Revision history for this message
Paul Dardeau (paul-dardeau) wrote :

Instead of:

stderr.write("WARNING: default min_part_hours may not match the value in the lost builder.")

it should be:

print("WARNING: default min_part_hours may not match the value in the lost builder.", file=sys.stderr)

This change will provide greater consistency and will allow unit tests to more easily mock print statement (suppress logging to console during testing).