Skip to content

Commit

Permalink
Fix makedirs
Browse files Browse the repository at this point in the history
  • Loading branch information
looi committed May 21, 2021
1 parent e6cd661 commit af6cc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dump_dags.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def dump_dags(output_base_path):
os.mkdirs(output_base_path, exist_ok=True)
os.makedirs(output_base_path, exist_ok=True)
bag = DagBag()
for dag_id in sorted(bag.dag_ids):
dag = bag.get_dag(dag_id)
Expand Down

0 comments on commit af6cc5a

Please sign in to comment.