Tweaked an output statement for generate_schedule.

- Legacy-Id: 18116
This commit is contained in:
Henrik Levkowetz 2020-07-01 14:08:58 +00:00
parent b1bff0575e
commit 92aeb2f6da

View file

@ -345,7 +345,7 @@ class Schedule(object):
self._save(last_run_cost)
if self.verbosity >= 1 and self.stdout.isatty():
sys.stderr.write('*' if last_run_cost < self.best_cost else '.')
sys.stderr.write('*' if last_run_cost == self.best_cost else '.')
sys.stderr.flush()
if self.verbosity >= 1 and self.stdout.isatty():