Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26068/com/win32comext/shell/src
Modified Files:
PyIShellFolder.cpp
Log Message:
correct typo in exception message
Index: PyIShellFolder.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIShellFolder.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** PyIShellFolder.cpp 3 Jun 2007 14:53:07 -0000 1.16
--- PyIShellFolder.cpp 17 Oct 2007 03:49:55 -0000 1.17
***************
*** 466,470 ****
if (!PyTuple_Check(result)) {
PyErr_Format(PyExc_TypeError,
! "ParseDisplayName must return a tuple if (int, pidl, attr) - got '%s'",
result->ob_type->tp_name);
bPythonIsHappy = FALSE;
--- 466,470 ----
if (!PyTuple_Check(result)) {
PyErr_Format(PyExc_TypeError,
! "ParseDisplayName must return a tuple of (int, pidl, attr) - got '%s'",
result->ob_type->tp_name);
bPythonIsHappy = FALSE;
|