Skip to content

Commit

Permalink
Changelog for #60
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Sep 19, 2012
1 parent 4047076 commit 5aa3fad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/changes.rst
Expand Up @@ -13,6 +13,8 @@ To be released.
[:issue:`58` by Piotr Florczyk]
- Added :attr:`Image.resolution <wand.image.Image.resolution>` property.
[:issue:`58` by Piotr Florczyk]
- Added :meth:`Image.blank() <wand.image.blank>` method.
[:issue:`60` by Piotr Florczyk]


Version 0.2.2
Expand Down
2 changes: 2 additions & 0 deletions wand/image.py
Expand Up @@ -857,6 +857,8 @@ def blank(self, width, height, background=None):
:returns: blank image
:rtype: :class:`Image`
.. versionadded:: 0.3.0
"""
if not isinstance(width, numbers.Integral) or width < 1:
raise TypeError('width must be a natural number, not ' +
Expand Down

0 comments on commit 5aa3fad

Please sign in to comment.