Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Feb 4, 2019
1 parent 0b187f2 commit ed50de4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ipypublish/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.1'
__version__ = '0.8.2'
2 changes: 1 addition & 1 deletion ipypublish/convert/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def write_output(body, resources, outdir, main_file_name, output_external,
if os.path.exists(outfilespath):
if clear_existing:
shutil.rmtree(outfilespath)
elif resources.get('external_file_paths', False):
elif resources.get('external_file_paths', False) or internal_files:
os.makedirs(outfilespath)
else:
outfilespath = None
Expand Down

0 comments on commit ed50de4

Please sign in to comment.