This commit is contained in:
Eric Lapouyade 2021-10-01 16:09:11 +02:00
parent 727d07fa3e
commit e3e1ab58d1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Created : 2015-03-12
@author: Eric Lapouyade @author: Eric Lapouyade
""" """
__version__ = '0.14.1' __version__ = '0.14.2'
# flake8: noqa # flake8: noqa
from .inline_image import InlineImage from .inline_image import InlineImage

View File

@ -125,7 +125,7 @@ def save_file(doc, parsed_args):
if not parsed_args[QUIET_ARG]: if not parsed_args[QUIET_ARG]:
print('Document successfully generated and saved at {output_path}'.format(output_path=output_path)) print('Document successfully generated and saved at {output_path}'.format(output_path=output_path))
except OSError as e: except OSError as e:
print('{e.strerror}. Could not save file {e.filename}.'.foramt(e=e)) print('{e.strerror}. Could not save file {e.filename}.'.format(e=e))
raise RuntimeError('Failed to save file.') raise RuntimeError('Failed to save file.')