From c23db51531de4336ad74486b21f527420a50a20f Mon Sep 17 00:00:00 2001 From: Songkran Nethan Date: Mon, 8 Oct 2018 19:18:05 +0700 Subject: [PATCH] [AIRFLOW-XXX] Fix wrong {{ next_ds }} description (#4017) --- docs/code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/code.rst b/docs/code.rst index e5a53193e62f7..764d6949ac2ec 100644 --- a/docs/code.rst +++ b/docs/code.rst @@ -251,7 +251,7 @@ Variable Description ``{{ prev_ds_nodash }}`` the previous execution date as ``YYYYMMDD`` if exists, else ``None` ``{{ next_ds }}`` the next execution date as ``YYYY-MM-DD`` if ``{{ ds }}`` is ``2016-01-01`` and ``schedule_interval`` is ``@weekly``, - ``{{ prev_ds }}`` will be ``2016-01-08`` + ``{{ next_ds }}`` will be ``2016-01-08`` ``{{ next_ds_nodash }}`` the next execution date as ``YYYYMMDD`` if exists, else ``None` ``{{ yesterday_ds }}`` yesterday's date as ``YYYY-MM-DD`` ``{{ yesterday_ds_nodash }}`` yesterday's date as ``YYYYMMDD``