Skip to content

Commit

Permalink
[AIRFLOW-296] template_ext is being treated as a string rather than a…
Browse files Browse the repository at this point in the history
… tuple in qubole operator

Closes apache#1638 from msumit/AIRFLOW-296
  • Loading branch information
msumit authored and criccomini committed Jun 30, 2016
1 parent 002cf85 commit 24d41b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/contrib/operators/qubole_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class QuboleOperator(BaseOperator):

template_fields = ('query', 'script_location', 'sub_command', 'script', 'files', 'archives', 'program', 'cmdline',
'sql', 'where_clause', 'extract_query', 'boundary_query', 'macros', 'tags', 'name', 'parameters')
template_ext = ('.txt')
template_ext = ('.txt',)
ui_color = '#3064A1'
ui_fgcolor = '#fff'

Expand Down

0 comments on commit 24d41b8

Please sign in to comment.