Skip to content

Commit

Permalink
Fix python2.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
csala committed Apr 2, 2019
1 parent 5c953f9 commit fd56778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _make_config(args):
config_dir = os.path.join(os.path.dirname(__file__), config_templates)
target_dir = os.path.join(os.getcwd(), config_templates)
if not os.path.exists(target_dir):
os.makedirs(target_dir, exist_ok=True)
os.makedirs(target_dir)

for template in glob.glob(os.path.join(config_dir, '*.yaml')):
target_file = os.path.join(target_dir, os.path.basename(template))
Expand Down

0 comments on commit fd56778

Please sign in to comment.