diff --git a/pykd/dbgexcept.cpp b/pykd/dbgexcept.cpp index 2358e90..8f42fe7 100644 --- a/pykd/dbgexcept.cpp +++ b/pykd/dbgexcept.cpp @@ -3,6 +3,7 @@ #include "kdlib/dbgio.h" #include "dbgexcept.h" +#include "pydbgio.h" namespace pykd { @@ -43,7 +44,7 @@ void printException() for ( long i = 0; i < python::len(lst); ++i ) sstr << std::wstring( python::extract(lst[i]) ) << std::endl; - kdlib::eprintln( sstr.str() ); + eprintln( sstr.str() ); }