Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c64c1 commit f45d3eeCopy full SHA for f45d3ee
lib/matplotlib/__init__.py
@@ -364,9 +364,9 @@ def _get_data_path():
364
def get_py2exe_datafiles():
365
import glob
366
367
- mplfiles = glob.glob(os.sep.join([matplotlib.get_data_path(), '*']))
+ mplfiles = glob.glob(os.sep.join([get_data_path(), '*']))
368
# Need to explicitly remove cocoa_agg files or py2exe complains
369
- mplfiles.remove(os.sep.join([matplotlib.get_data_path(), 'Matplotlib.nib']))
+ mplfiles.remove(os.sep.join([get_data_path(), 'Matplotlib.nib']))
370
371
return ('matplotlibdata', mplfiles)
372
0 commit comments