From e777b831824c3e9d59dc83b3bbfbde1238419e6b Mon Sep 17 00:00:00 2001 From: Joel Labes Date: Fri, 18 Feb 2022 16:50:20 +1300 Subject: [PATCH 1/3] Update format.py --- core/dbt/events/format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/events/format.py b/core/dbt/events/format.py index cf0182578e8..627ce0bd9af 100644 --- a/core/dbt/events/format.py +++ b/core/dbt/events/format.py @@ -15,7 +15,7 @@ def format_fancy_output_line( progress = "" else: progress = "{} of {} ".format(index, total) - prefix = "{progress}{message}".format(progress=progress, message=msg) + prefix = "{progress}{message} ".format(progress=progress, message=msg) truncate_width = ui.printer_width() - 3 justified = prefix.ljust(ui.printer_width(), ".") From 00e7e7817734686035321b5dd940ed16aea11d31 Mon Sep 17 00:00:00 2001 From: Joel Labes Date: Fri, 18 Feb 2022 16:52:32 +1300 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6b8fb2f912..f5c2def0796 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,12 +24,14 @@ - Drop support for Python 3.7.0 + 3.7.1 ([#4584](https://github.com/dbt-labs/dbt-core/issues/4584), [#4585](https://github.com/dbt-labs/dbt-core/pull/4585), [#4643](https://github.com/dbt-labs/dbt-core/pull/4643)) - Re-format codebase (except tests) using pre-commit hooks ([#3195](https://github.com/dbt-labs/dbt-core/issues/3195), [#4697](https://github.com/dbt-labs/dbt-core/pull/4697)) - Add deps module README ([#4686](https://github.com/dbt-labs/dbt-core/pull/4686/)) +- Add a space before justification periods, to allow double-click to select a node in CLI output ([#4737](https://github.com/dbt-labs/dbt-core/issues/4737), [#4744](https://github.com/dbt-labs/dbt-core/pull/4744)) Contributors: - [@NiallRees](https://github.com/NiallRees) ([#4447](https://github.com/dbt-labs/dbt-core/pull/4447)) - [@alswang18](https://github.com/alswang18) ([#4644](https://github.com/dbt-labs/dbt-core/pull/4644)) - [@emartens](https://github.com/ehmartens) ([#4701](https://github.com/dbt-labs/dbt-core/pull/4701)) - [@mdesmet](https://github.com/mdesmet) ([#4604](https://github.com/dbt-labs/dbt-core/pull/4604)) +- [@joellabes](https://github.com/joellabes) ([#4744](https://github.com/dbt-labs/dbt-core/pull/4744)) ## dbt-core 1.0.2 (TBD) From 5dc6b2f7bb9f9ca28c356412392a6b13a09b7a7c Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Tue, 22 Mar 2022 14:48:42 -0400 Subject: [PATCH 3/3] add change file --- .changes/unreleased/Features-20220322-144822.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changes/unreleased/Features-20220322-144822.yaml diff --git a/.changes/unreleased/Features-20220322-144822.yaml b/.changes/unreleased/Features-20220322-144822.yaml new file mode 100644 index 00000000000..cbcd081ccda --- /dev/null +++ b/.changes/unreleased/Features-20220322-144822.yaml @@ -0,0 +1,7 @@ +kind: Features +body: Add space before justification periods +time: 2022-03-22T14:48:22.64892-04:00 +custom: + Author: joellabes + Issue: "4737" + PR: "4744"