Skip to content

Commit d06d04b

Browse files
tacaswelltimhoffm
andauthored
DOC: soften warning on miss-matched versions in unpickle
Co-authored-by: Tim Hoffmann <[email protected]>
1 parent 265e49e commit d06d04b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/figure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ def __setstate__(self, state):
31683168
if version != mpl.__version__:
31693169
_api.warn_external(
31703170
f"This figure was saved with matplotlib version {version} and "
3171-
f"loaded with {mpl.__version__} so is unlikely to function correctly."
3171+
f"loaded with {mpl.__version__} so may not function correctly."
31723172
)
31733173
self.__dict__ = state
31743174

0 commit comments

Comments
 (0)