Missed the char_to_str_xform on the docstrings for the module level function definitions.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@134775 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/modify-python-lldb.py b/scripts/Python/modify-python-lldb.py
index 2e2c8be..139d981 100644
--- a/scripts/Python/modify-python-lldb.py
+++ b/scripts/Python/modify-python-lldb.py
@@ -52,7 +52,9 @@
 #
 # The one-liner docstring also needs char_to_str transformation, btw.
 #
-one_liner_docstring_pattern = re.compile('^        """.*"""$')
+TWO_SPACES = ' ' * 2
+EIGHT_SPACES = ' ' * 8
+one_liner_docstring_pattern = re.compile('^(%s|%s)""".*"""$' % (TWO_SPACES, EIGHT_SPACES))
 
 #
 # lldb_iter() should appear before our first SB* class definition.