Skip to content

Commit

Permalink
pylint fixes, bump to version 0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffy-critter committed May 22, 2018
1 parent e23ecfe commit e9416ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions publ/image.py
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',

Expand Down

0 comments on commit e9416ff

Please sign in to comment.