[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/ui/blocks PythonPathBlock.java, 1.2,
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-04-13 16:55:13
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/blocks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13464/src/org/python/pydev/debug/ui/blocks Modified Files: PythonPathBlock.java Log Message: Better error message when launch config is not valid. Index: PythonPathBlock.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/blocks/PythonPathBlock.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PythonPathBlock.java 9 Mar 2008 14:27:59 -0000 1.2 --- PythonPathBlock.java 13 Apr 2008 16:55:18 -0000 1.3 *************** *** 1,5 **** package org.python.pydev.debug.ui.blocks; - import org.eclipse.core.runtime.CoreException; import org.eclipse.debug.core.ILaunchConfiguration; import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; --- 1,4 ---- *************** *** 56,60 **** fPythonPathList.add(p); } ! } catch (CoreException e) { // Exceptions here may have several reasons // - The interpreter is incorrectly configured --- 55,59 ---- fPythonPathList.add(p); } ! } catch (Exception e) { // Exceptions here may have several reasons // - The interpreter is incorrectly configured |