diff --git a/publ/image.py b/publ/image.py index dec48121..1229b239 100644 --- a/publ/image.py +++ b/publ/image.py @@ -84,7 +84,7 @@ def _fullsize_link_tag(self, kwargs, title): class _NullLock(): """ A fake "lock" that lets us not actually lock anymore """ - # pylint ignore:unused-argument + # pylint: disable=too-few-public-methods def __exit__(self, exc_type, exc_value, traceback): pass @@ -232,7 +232,7 @@ def _render(self, path, size, box, flatten, kwargs, out_args): # pylint:disable temp_path = file.name image.save(file, **out_args) shutil.move(temp_path, path) - except Exception: + except Exception: # pylint: disable=broad-except logger.exception("Failed to render %s -> %s", self._record.file_path, path) diff --git a/setup.py b/setup.py index 354fb910..b2b8a684 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='Publ', - version='0.1.15', + version='0.1.16', description='A content-management system for flexible web-based publishing',