eladkal opened a new pull request #4689: [AIRFLOW-3868] - Incorrect import of distutils in JenkinsHook URL: https://github.com/apache/airflow/pull/4689 Make sure you have checked _all_ steps below. ### Jira - [V] My PR addresses the following [Airflow Jira](https://issues.apache.org/jira/browse/AIRFLOW-3868) issues and references them in the PR title. For example, "\[AIRFLOW-XXX\] My Airflow PR" - https://issues.apache.org/jira/browse/AIRFLOW-3868 ### Description Fix error AttributeError: module 'distutils' has no attribute 'util' **Before:** ``` Python 3.6.7 >>> import distutils >>> print (distutils.util.strtobool('true')) Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'distutils' has no attribute 'util' >>> ``` **After:** ``` Python 3.6.7 >>> from distutils.util import strtobool >>> print (strtobool('true')) 1 ``` ### Code Quality - [V] Passes `flake8`
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
