Skip to content

Commit

Permalink
[AIRFLOW-86] Wrap dict.items() in list for Py3 compatibility
Browse files Browse the repository at this point in the history
Author: jlowin <[email protected]>

Closes #1483 from jlowin/AIRFLOW-86.
  • Loading branch information
jlowin committed May 18, 2016
1 parent 4343234 commit af43db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def wrapper(*args, **kwargs):
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'))

Expand Down

0 comments on commit af43db5

Please sign in to comment.