diff options
author | Enrico Granata <egranata@apple.com> | 2012-08-24 00:32:51 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-08-24 00:32:51 +0000 |
commit | 051c60caad2afb89aa325b47485df0f2f1ae14d8 (patch) | |
tree | d9b7dd4f28ad3b4845dd0ad0cc2c680c72c4631a /lldb | |
parent | c621af1f60f58f31ca65706fe6f893909b0c6260 (diff) | |
download | bcm5719-llvm-051c60caad2afb89aa325b47485df0f2f1ae14d8.tar.gz bcm5719-llvm-051c60caad2afb89aa325b47485df0f2f1ae14d8.zip |
Was forcing everyone on ToT to use the PythonOSPlugin.. my bad
llvm-svn: 162519
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp index ad86f8c7624..fd84eb85d4a 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp @@ -56,7 +56,7 @@ OperatingSystem * 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; } |