Now that we have an LLDB package, make the "lldb.macosx.crashlog" module work with all of the new module paths.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@155528 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/ScriptInterpreterPython.cpp b/source/Interpreter/ScriptInterpreterPython.cpp
index 29d818d..1865a3d 100644
--- a/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/source/Interpreter/ScriptInterpreterPython.cpp
@@ -534,7 +534,7 @@
         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);