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 41e3a91  Fix missing whitespace in ``apply_default`` deprecation 
message (#17799)
41e3a91 is described below

commit 41e3a918f01a4506ea676b0db7856e99fae47528
Author: Kaxil Naik <kaxiln...@gmail.com>
AuthorDate: Tue Aug 24 06:30:46 2021 +0100

    Fix missing whitespace in ``apply_default`` deprecation message (#17799)
---
 airflow/utils/decorators.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/utils/decorators.py b/airflow/utils/decorators.py
index e0b314b..ea5a536 100644
--- a/airflow/utils/decorators.py
+++ b/airflow/utils/decorators.py
@@ -36,7 +36,7 @@ def apply_defaults(func: T) -> T:
     warnings.warn(
         "This decorator is deprecated. \n"
         "\n"
-        "In previous versions, all subclasses of BaseOperator must use 
apply_default decorator for the"
+        "In previous versions, all subclasses of BaseOperator must use 
apply_default decorator for the "
         "`default_args` feature to work properly.\n"
         "\n"
         "In current version, it is optional. The decorator is applied 
automatically using the metaclass.\n",

Reply via email to