Skip to content

Commit

Permalink
Merge pull request #2496 from androomerrill/inset_locator_fix
Browse files Browse the repository at this point in the history
Adding a missing 'b' back into two 'bbox_' kwargs
  • Loading branch information
mdboom committed Oct 5, 2013
2 parents 170de26 + 29d5bb8 commit 6fc76e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mpl_toolkits/axes_grid1/inset_locator.py
Expand Up @@ -39,8 +39,8 @@ def __init__(self, bbox_to_anchor, offsetbox, loc,
super(AnchoredLocatorBase, self).__init__(loc,
pad=0., child=None,
borderpad=borderpad,
box_to_anchor=bbox_to_anchor,
box_transform=bbox_transform)
bbox_to_anchor=bbox_to_anchor,
bbox_transform=bbox_transform)

def draw(self, renderer):
raise RuntimeError("No draw method should be called")
Expand Down

0 comments on commit 6fc76e3

Please sign in to comment.