Skip to content

Commit

Permalink
Merge pull request #2701 from jakevdp/fancybbox_typo
Browse files Browse the repository at this point in the history
Fix FancyBboxPatch Typo
  • Loading branch information
tacaswell committed Jan 5, 2014
2 parents 9be5ac4 + 3f78c1d commit 93cce5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/patches.py
Expand Up @@ -2237,8 +2237,8 @@ class FancyBboxPatch(Patch):

def __str__(self):
return self.__class__.__name__ \
+ "FancyBboxPatch(%g,%g;%gx%g)" % (self._x, self._y,
self._width, self._height)
+ "(%g,%g;%gx%g)" % (self._x, self._y,
self._width, self._height)

@docstring.dedent_interpd
def __init__(self, xy, width, height,
Expand Down

0 comments on commit 93cce5e

Please sign in to comment.