modify-python-lldb.py: Remove docstring formatting code

The strings have been already cleaned up in r358683, so this code is not
doing anything anymore.

While comparing the outputs before and after removing the formatting
code, I've found a couple of docstrings that managed to escape my perl
script in r358683, so I format them manually with this patch.

llvm-svn: 358846
diff --git a/lldb/scripts/interface/SBProcess.i b/lldb/scripts/interface/SBProcess.i
index ab73f33..38e99f3 100644
--- a/lldb/scripts/interface/SBProcess.i
+++ b/lldb/scripts/interface/SBProcess.i
@@ -289,8 +289,7 @@
     if error.Success():
         print('integer: %u' % uint)
     else
-        print('error: ', error)
-") ReadUnsignedFromMemory;
+        print('error: ', error)") ReadUnsignedFromMemory;
 
     uint64_t
     ReadUnsignedFromMemory (addr_t addr, uint32_t byte_size, lldb::SBError &error);
@@ -304,8 +303,7 @@
     if error.Success():
         print('pointer: 0x%x' % ptr)
     else
-        print('error: ', error)
-") ReadPointerFromMemory;
+        print('error: ', error)") ReadPointerFromMemory;
 
     lldb::addr_t
     ReadPointerFromMemory (addr_t addr, lldb::SBError &error);