You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2023/07/10 02:10:37 UTC

[airflow] branch main updated: Fix a space in Breeze message (#32473)

This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 3720e28d58 Fix a space in Breeze message (#32473)
3720e28d58 is described below

commit 3720e28d582c4edc29e8433dce05a639a503f755
Author: Tzu-ping Chung <ur...@gmail.com>
AuthorDate: Mon Jul 10 10:10:30 2023 +0800

    Fix a space in Breeze message (#32473)
---
 dev/breeze/src/airflow_breeze/commands/developer_commands.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/developer_commands.py b/dev/breeze/src/airflow_breeze/commands/developer_commands.py
index f9dcde6633..cc81cd5b48 100644
--- a/dev/breeze/src/airflow_breeze/commands/developer_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/developer_commands.py
@@ -691,8 +691,8 @@ def enter_shell(**kwargs) -> RunCommandResult:
 
     if shell_params.backend == "sqlite":
         get_console().print(
-            f"\n[warn]backend: sqlite is not"
-            f" compatible with executor: {shell_params.executor}."
+            f"\n[warn]backend: sqlite is not "
+            f"compatible with executor: {shell_params.executor}. "
             f"Changing the executor to SequentialExecutor.\n"
         )
         shell_params.executor = "SequentialExecutor"