commit | 2d4a955e9008d85f2ab4b6c530484c8b63c4d949 | [log] [tgz] |
---|---|---|
author | Jared Saul <jsaul@google.com> | Wed Jan 09 19:54:49 2019 +0000 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Jan 09 19:54:49 2019 +0000 |
tree | 3c356a4b0213396b01cbdfab7514af934ae3fdb8 | |
parent | 4157ba1c3c7a78d10887b50fbeda06f1bfb34860 [diff] [blame] |
Fix broken metrics collection dialog spacing The change around line 29-30 in https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1368409/2/metrics_utils.py inadvertently removed an extra space. As a result, the metrics collection dialog looks like this: https://screenshot.googleplex.com/3aGtquydCXM.png Change-Id: I7c9c08949b0df248e6de4f59ec9cfd573ff40901 Reviewed-on: https://chromium-review.googlesource.com/c/1403577 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Jared Saul <jsaul@google.com>
diff --git a/metrics_utils.py b/metrics_utils.py index b97828f..854179e 100644 --- a/metrics_utils.py +++ b/metrics_utils.py
@@ -27,7 +27,7 @@ ) NOTICE_COUNTDOWN_HEADER = ( '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n' - '┃ METRICS COLLECTION WILL START IN %2d EXECUTIONS ┃' + '┃ METRICS COLLECTION WILL START IN %2d EXECUTIONS ┃' ) NOTICE_COLLECTION_HEADER = ( '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n'