There's no need to explicitly call lldb.SBDebugger.Initialize() now.  It is done
when importing the lldb module.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116585 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/python/disasm.py b/examples/python/disasm.py
index 7264022..5d20874 100755
--- a/examples/python/disasm.py
+++ b/examples/python/disasm.py
@@ -17,9 +17,6 @@
     for i in range(insts.GetSize()):
         print insts.GetInstructionAtIndex(i)
 
-# Initialize LLDB so we can use it
-lldb.SBDebugger.Initialize()
-
 # Create a new debugger instance
 debugger = lldb.SBDebugger.Create()