diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2019-09-25 20:28:20 +0000 |
---|---|---|
committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-09-25 20:28:20 +0000 |
commit | 0cbcd228fb3ec0f22acefa1fc195dbcefa0c149d (patch) | |
tree | d0080f55868f43361b453f471689e9e1d6f2a9ef /cloudinit/analyze/show.py | |
parent | 18286fc3f77ddbd05ba6c46f160c54092c63c10c (diff) | |
download | vyos-cloud-init-0cbcd228fb3ec0f22acefa1fc195dbcefa0c149d.tar.gz vyos-cloud-init-0cbcd228fb3ec0f22acefa1fc195dbcefa0c149d.zip |
analyze/show: remove trailing space in output
Diffstat (limited to 'cloudinit/analyze/show.py')
-rw-r--r-- | cloudinit/analyze/show.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/analyze/show.py b/cloudinit/analyze/show.py index 511b808e..fb152b1d 100644 --- a/cloudinit/analyze/show.py +++ b/cloudinit/analyze/show.py @@ -349,7 +349,7 @@ def generate_records(events, blame_sort=False, if event_name(event) == event_name(prev_evt): record = event_record(start_time, prev_evt, event) records.append(format_record("Finished stage: " - "(%n) %d seconds ", + "(%n) %d seconds", record) + "\n") total_time += record.get('delta') else: |