diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-09-03 14:03:30 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-09-03 14:03:30 -0700 |
commit | ee4f02ccf6e41d1c453c124c7623f742c56b306e (patch) | |
tree | 797d2a2ba25d60f85a0fb503f64c959bb2ce9872 /py/modules/IcePy/Operation.cpp | |
parent | Partial fix for 4210 - Update to latest Berkeley DB 4.7.25 (diff) | |
download | ice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.tar.bz2 ice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.tar.xz ice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.zip |
bug 4229 - generate Python docstrings
Diffstat (limited to 'py/modules/IcePy/Operation.cpp')
-rw-r--r-- | py/modules/IcePy/Operation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Operation.cpp b/py/modules/IcePy/Operation.cpp index 2d3022613c8..171abbe2f2e 100644 --- a/py/modules/IcePy/Operation.cpp +++ b/py/modules/IcePy/Operation.cpp @@ -2000,7 +2000,7 @@ IcePy::TypedUpcall::exception(PyException& ex) // // Get the exception's type and verify that it is legal to be thrown from this operation. // - PyObjectHandle iceType = PyObject_GetAttrString(ex.ex.get(), STRCAST("ice_type")); + PyObjectHandle iceType = PyObject_GetAttrString(ex.ex.get(), STRCAST("_ice_type")); assert(iceType.get()); ExceptionInfoPtr info = ExceptionInfoPtr::dynamicCast(getException(iceType.get())); assert(info); |