You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by jl...@apache.org on 2016/05/18 18:26:51 UTC

incubator-airflow git commit: [AIRFLOW-86] Wrap dict.items() in list for Py3 compatibility

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 434323483 -> af43db5af


[AIRFLOW-86] Wrap dict.items() in list for Py3 compatibility

Author: jlowin <jl...@users.noreply.github.com>

Closes #1483 from jlowin/AIRFLOW-86.


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/af43db5a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/af43db5a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/af43db5a

Branch: refs/heads/master
Commit: af43db5af0880bfabb2b044121134c8f050e3ae8
Parents: 4343234
Author: jlowin <jl...@users.noreply.github.com>
Authored: Wed May 18 14:26:43 2016 -0400
Committer: jlowin <jl...@apache.org>
Committed: Wed May 18 14:26:43 2016 -0400

----------------------------------------------------------------------
 airflow/www/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/af43db5a/airflow/www/utils.py
----------------------------------------------------------------------
diff --git a/airflow/www/utils.py b/airflow/www/utils.py
index 92d07a9..d600cbb 100644
--- a/airflow/www/utils.py
+++ b/airflow/www/utils.py
@@ -104,7 +104,7 @@ def action_logging(f):
             event=f.__name__,
             task_instance=None,
             owner=user,
-            extra=str(request.args.items()),
+            extra=str(list(request.args.items())),
             task_id=request.args.get('task_id'),
             dag_id=request.args.get('dag_id'))