[Lldb-commits] [lldb] r162519 - /lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp

Enrico Granata egranata at apple.com
Thu Aug 23 17:32:52 PDT 2012


Author: enrico
Date: Thu Aug 23 19:32:51 2012
New Revision: 162519

URL: http://llvm.org/viewvc/llvm-project?rev=162519&view=rev
Log:
Was forcing everyone on ToT to use the PythonOSPlugin.. my bad

Modified:
    lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp

Modified: lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp?rev=162519&r1=162518&r2=162519&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp (original)
+++ lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp Thu Aug 23 19:32:51 2012
@@ -56,7 +56,7 @@
 OperatingSystemPython::CreateInstance (Process *process, bool force)
 {
     // Python OperatingSystem plug-ins must be requested by name, so force must be true
-    //if (force)
+    if (force)
         return new OperatingSystemPython (process);
     return NULL;
 }





More information about the lldb-commits mailing list