Added diagnostic in _launch_iTunes to assist in identifying failure in ticket #791530

This commit is contained in:
GRiker 2011-06-02 03:40:52 -06:00
parent c409d7188d
commit 6c33b59cd7

View File

@ -3023,6 +3023,8 @@ class ITUNES_ASYNC(ITUNES):
pythoncom.CoInitialize() pythoncom.CoInitialize()
self._launch_iTunes() self._launch_iTunes()
except: except:
import traceback
traceback.print_exc()
raise UserFeedback('unable to launch iTunes', details=None, level=UserFeedback.WARN) raise UserFeedback('unable to launch iTunes', details=None, level=UserFeedback.WARN)
finally: finally:
pythoncom.CoUninitialize() pythoncom.CoUninitialize()