File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2828OTHER DEALINGS IN THE SOFTWARE.
2929"""
3030
31- __version__ = '6.1.20230514 '
31+ __version__ = '6.1.20230518 '
3232__license__ = __doc__
3333__project_url__ = 'http://winpython.github.io/'
Original file line number Diff line number Diff line change @@ -3598,3 +3598,6 @@ description = Wrappers to call pyproject.toml-based build backend hooks.
35983598[accelerate]
35993599description = Accelerate
36003600
3601+ [spatialpandas]
3602+ description = Pandas extension arrays for spatial/geometric operations
3603+
Original file line number Diff line number Diff line change @@ -264,7 +264,12 @@ def create_shortcut(
264264 ipf = ilink .QueryInterface (pythoncom .IID_IPersistFile )
265265 if not filename .endswith ('.lnk' ):
266266 filename += '.lnk'
267- ipf .Save (filename , 0 )
267+ print (f'ipf.save *{ filename } *' )
268+ try :
269+ ipf .Save (filename , 0 )
270+ except :
271+ print ("a fail !" )
272+ pass
268273
269274
270275# =============================================================================
You can’t perform that action at this time.
0 commit comments