diff options
author | Greg Clayton <gclayton@apple.com> | 2012-04-25 01:49:50 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-04-25 01:49:50 +0000 |
commit | ed3eee6e55e367f4c0b954c55fecff57da8ef074 (patch) | |
tree | 1e003e85d2982d3e3f52b3efb9d3694a12eeb02a /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 68b922590daa7d8dd5b17a89e01c5442da0a1b4b (diff) | |
download | bcm5719-llvm-ed3eee6e55e367f4c0b954c55fecff57da8ef074.tar.gz bcm5719-llvm-ed3eee6e55e367f4c0b954c55fecff57da8ef074.zip |
Now that we have an LLDB package, make the "lldb.macosx.crashlog" module work with all of the new module paths.
llvm-svn: 155528
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 29d818dfa5f..1865a3d3cc6 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -534,7 +534,7 @@ ScriptInterpreterPython::ExecuteOneLine (const char *command, CommandReturnObjec if (script_interpreter_dict != NULL) { PyObject *pfunc = (PyObject*)m_run_one_line; - PyObject *pmod = PyImport_AddModule ("embedded_interpreter"); + PyObject *pmod = PyImport_AddModule ("lldb.embedded_interpreter"); if (pmod != NULL) { PyObject *pmod_dict = PyModule_GetDict (pmod); |