Skip to content

Commit

Permalink
Merge branch 'master' into env_connections
Browse files Browse the repository at this point in the history
  • Loading branch information
neovintage committed Aug 30, 2015
2 parents fc27eaf + c730f5d commit 9009fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/executors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
for _executor in _executors:
globals()[_executor.__name__] = _executor
if _EXECUTOR in globals():
DEFAULT_EXECUTOR = globals()[_EXECUTOR]
DEFAULT_EXECUTOR = globals()[_EXECUTOR]()
else:
raise AirflowException("Executor {0} not supported.".format(_EXECUTOR))

Expand Down

0 comments on commit 9009fdf

Please sign in to comment.