File tree Expand file tree Collapse file tree
matplotlib.indigoPlugin/Contents Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ v0.9.51
2+ - Addresses queue `module not found` import error.
3+
14v0.9.50
25- Updates image save path logic for Indigo 2021.
36
Original file line number Diff line number Diff line change 33<plist version =" 1.0" >
44<dict >
55 <key >PluginVersion </key >
6- <string >0.9.50 </string >
6+ <string >0.9.51 </string >
77 <key >ServerApiVersion </key >
88 <string >2.0 </string >
99 <key >IwsApiVersion </key >
Original file line number Diff line number Diff line change 4949# starting a new one. (Too many open files error.)
5050# TODO: Text idea of throwing up a dialog box when new version of plugin installed. Use
5151# version number key of last one viewed.
52- # ================================== IMPORTS ==================================
5352
53+ # ================================== IMPORTS ==================================
5454try :
5555 import indigo
56- except ImportError as error :
56+ except ImportError :
5757 pass
5858
5959# Built-in modules
6969import operator as op
7070import os
7171import pickle
72- from queue import Queue
72+
73+ try :
74+ from queue import Queue
75+ except ImportError :
76+ from Queue import Queue
77+
7378import re
7479import shutil
7580import subprocess
104109__license__ = Dave .__license__
105110__build__ = Dave .__build__
106111__title__ = u"Matplotlib Plugin for Indigo"
107- __version__ = u"0.9.50 "
112+ __version__ = u"0.9.51 "
108113
109114# =============================================================================
110115
You can’t perform that action at this time.
0 commit comments