You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by xd...@apache.org on 2020/12/03 05:57:05 UTC

[airflow] branch master updated: Fix typo in airflow/serialization/serialized_objects.py (#12767)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8f48f12  Fix typo in airflow/serialization/serialized_objects.py (#12767)
8f48f12 is described below

commit 8f48f12128e0d985c6de2603902524859fecbca8
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu Dec 3 05:54:59 2020 +0000

    Fix typo in airflow/serialization/serialized_objects.py (#12767)
    
    "Cnn't load plugins" -> "Can not load plugins"
---
 airflow/serialization/serialized_objects.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/serialization/serialized_objects.py b/airflow/serialization/serialized_objects.py
index e9b5cf2..fe50806 100644
--- a/airflow/serialization/serialized_objects.py
+++ b/airflow/serialization/serialized_objects.py
@@ -377,7 +377,7 @@ class SerializedBaseOperator(BaseOperator, BaseSerialization):
         plugins_manager.initialize_extra_operators_links_plugins()
 
         if plugins_manager.operator_extra_links is None:
-            raise AirflowException("Cnn't load plugins")
+            raise AirflowException("Can not load plugins")
         op = SerializedBaseOperator(task_id=encoded_op['task_id'])
 
         # Extra Operator Links defined in Plugins