tripleo_profile_tasks: add a final line break

If a trace occurs, a final line break is visually useful to know when
the task profiling ends. The trace will be show *after* the callback so
we reduce confusion where the problem is.

Change-Id: Ibe21bdf046f71ce45f0fd36068635c4d954da5f2
This commit is contained in:
Emilien Macchi 2020-06-16 12:29:37 -04:00
parent d0dc2f9847
commit db3ff367f5
1 changed files with 2 additions and 0 deletions

View File

@ -117,3 +117,5 @@ class CallbackModule(PT):
u'{0:.02f}s'.format(result['time']) u'{0:.02f}s'.format(result['time'])
] ]
self._output(' | '.join(line)) self._output(' | '.join(line))
self._output('~' * 89)