From febb4f09caa65242f14301e2701dda05e0cae3b2 Mon Sep 17 00:00:00 2001 From: Siva Prasad Varma Date: Fri, 14 Mar 2014 23:22:01 +0530 Subject: [PATCH] changed to fig.subplots_adjust() --- doc/examples/plot_watershed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_watershed.py b/doc/examples/plot_watershed.py index f003c122..27f7016e 100644 --- a/doc/examples/plot_watershed.py +++ b/doc/examples/plot_watershed.py @@ -61,6 +61,6 @@ ax2.set_title('Separated objects') for ax in axes: ax.axis('off') -plt.subplots_adjust(hspace=0.01, wspace=0.01, top=1, bottom=0, left=0, +fig.subplots_adjust(hspace=0.01, wspace=0.01, top=1, bottom=0, left=0, right=1) plt.show()