Skip to content

Commit

Permalink
Merge pull request #18 from obsoleter/master
Browse files Browse the repository at this point in the history
Error in the initial example shown in the docs
  • Loading branch information
dahlia committed May 8, 2012
2 parents 814d5a1 + 212ae60 commit 5b8e9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Wand is a :mod:`ctypes`-based simple `MagickWand API`_ binding for Python. ::
with img.clone() as i:
i.resize(int(i.width * r * 0.25), int(i.height * r * 0.25))
i.rotate(90 * r)
i.save('mona-lisa-{0}.png'.format(i))
i.save(filename='mona-lisa-{0}.png'.format(r))
display(i)

You can install it from PyPI_ (and it requires MagickWand library):
Expand Down

0 comments on commit 5b8e9c2

Please sign in to comment.