Skip to content

Commit 98e3dc4

Browse files
author
productivememberofsociety666
committed
Python 2.6 fix.
1 parent e1dbf46 commit 98e3dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/tests/test_axes_grid1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_twin_axes_empty_and_removed():
6161
h = host_subplot(len(a), len(b), i)
6262
t = getattr(h, twin)()
6363
getattr(t, op)() if op else None
64-
h.text(0.5, 0.5, twin + (" & {}".format(op) if op else ""),
64+
h.text(0.5, 0.5, twin + (" & {0}".format(op) if op else ""),
6565
horizontalalignment="center", verticalalignment="center")
6666
plt.subplots_adjust(wspace=0.5, hspace=1)
6767

0 commit comments

Comments
 (0)